Skip to content
Advertisement

Tag: django-templates

Django Template Aren’t Loading

I’m trying to load different html files into the base.html and they’re not showing. Any ideas? Answer I think you may be confusing template inheritance with template composition. In template inheritance, you have a base page like base.html: Then, you have a second template shoes.html that extends base.html. It inherits all the HTML from base.html, but fills in some custom

Advertisement