[Django]-Can we extend more than one html in single html template in django?and if yes then how?

4👍

You can extend base in your index.html and use:

{% include "path/to/home.html" %}  

Leave a comment