Guest User

Untitled

a guest
Aug 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Can a django template find out its named url or can a base template know which template is extending it?
  2. {% block login %}
  3. ... login form here ...
  4. {% endblock %}
  5.  
  6. {% block main %}
  7. {% endblock %}
  8.  
  9. {% extends "base.html" %}
  10.  
  11. {% block login %}
  12. {% endblock %}
  13.  
  14. {% block main %}
  15. ... real login form here ...
  16. {% endblock %}
Add Comment
Please, Sign In to add comment