Re: use site's templates

2019-08-15 Thread RONAK JAIN
Hey , You can use for the load your base.html {% extends "project/base.html" %} I will give some example for better understanding so, if you are trying to Extend your html file in your index.html file so, you can write simply according to me: {% load static %} {% extends 'base.html' %} {% bl

Re: use site's templates

2019-08-15 Thread dupakoor kannan
Hi, I am trying to use a Django tip from stackoverflow https://stackoverflow.com/a/946397/4037275 I have static css style sheets (static). I will use {% load static %}. Can I use this template approach in extending templates {% extends "project/base.html" %} Can you give me few other examples of