diff options
| author | SusanTan <onceuponatimeforever@gmail.com> | 2013-07-30 23:37:54 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-31 06:59:15 -0400 |
| commit | ccf8f1e18f138dae369a2004c83db9704ad52d99 (patch) | |
| tree | a9a4c92263860691921d0d98e81659cc26bc382e /tests/templates | |
| parent | 0674b38ce904aa9d7a629313831ad24be3d8f3e6 (diff) | |
Added a test for AdminSite.app_index_template; refs #8498.
Diffstat (limited to 'tests/templates')
| -rw-r--r-- | tests/templates/custom_admin/app_index.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/templates/custom_admin/app_index.html b/tests/templates/custom_admin/app_index.html new file mode 100644 index 0000000000..3dfae814a7 --- /dev/null +++ b/tests/templates/custom_admin/app_index.html @@ -0,0 +1,6 @@ +{% extends "admin/app_index.html" %} + +{% block content %} +Hello from a custom app_index template +{{ block.super }} +{% endblock %} |
