mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
12 lines
183 B
HTML
12 lines
183 B
HTML
{% extends "included_base.html" %}
|
|
|
|
{% block content %}
|
|
content
|
|
{{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block error_here %}
|
|
error here
|
|
{% url "nonexistent_url" %}
|
|
{% endblock %}
|