included_content.html 183 B

1234567891011
  1. {% extends "included_base.html" %}
  2. {% block content %}
  3. content
  4. {{ block.super }}
  5. {% endblock %}
  6. {% block error_here %}
  7. error here
  8. {% url "nonexistent_url" %}
  9. {% endblock %}