diff options
Diffstat (limited to 'parts/django/tests/templates/custom_admin/index.html')
-rw-r--r-- | parts/django/tests/templates/custom_admin/index.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/parts/django/tests/templates/custom_admin/index.html b/parts/django/tests/templates/custom_admin/index.html new file mode 100644 index 0000000..75b6ca3 --- /dev/null +++ b/parts/django/tests/templates/custom_admin/index.html @@ -0,0 +1,6 @@ +{% extends "admin/index.html" %} + +{% block content %} +Hello from a custom index template {{ foo }} +{{ block.super }} +{% endblock %} |