mirror of
https://github.com/django/django.git
synced 2025-06-22 11:59:17 +00:00
12 lines
183 B
Django/Jinja
12 lines
183 B
Django/Jinja
{% extends "included_base.html" %}
|
|
|
|
{% block content %}
|
|
content
|
|
{{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block error_here %}
|
|
error here
|
|
{% url "nonexistent_url" %}
|
|
{% endblock %}
|