Guest User

Untitled

a guest
Jan 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <!-- base.html -->
  2.  
  3. {% block my_block %}
  4. ... lots of content ...
  5.  
  6. {{foo}}
  7.  
  8. {% template_tag baz %}
  9.  
  10. ... lots more content ...
  11. {% endblock %}
  12.  
  13. <!-- extended.html -->
  14. {% extends "layout/base.html" %}
  15.  
  16.  
  17. {% block my_block %}
  18. {% with foo='bar' baz=123 %}
  19. {{block.super}}
  20. {% endwith %}
  21. {% endblock %}
Add Comment
Please, Sign In to add comment