mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
a19ed8aea3
This is a backward incompatible change. The admin contrib app has been refactored. The newforms module has several improvements including FormSets and Media definitions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
7 lines
132 B
HTML
7 lines
132 B
HTML
{% extends "admin/index.html" %}
|
|
|
|
{% block content %}
|
|
Hello from a custom index template {{ foo }}
|
|
{{ block.super }}
|
|
{% endblock %}
|