1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Merged the newforms-admin branch into trunk.

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
This commit is contained in:
Brian Rosner
2008-07-18 23:54:34 +00:00
parent dc375fb0f3
commit a19ed8aea3
121 changed files with 8050 additions and 2680 deletions

View File

@@ -0,0 +1 @@
{% extends "admin/change_form.html" %}

View File

@@ -0,0 +1,7 @@
{% extends "admin/change_list.html" %}
{% block extrahead %}
<script type="text/javascript">
var hello = '{{ extra_var }}';
</script>
{% endblock %}

View File

@@ -0,0 +1 @@
{% extends "admin/delete_confirmation.html" %}

View File

@@ -0,0 +1,6 @@
{% extends "admin/index.html" %}
{% block content %}
Hello from a custom index template {{ foo }}
{{ block.super }}
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "admin/login.html" %}
{% block content %}
Hello from a custom login template
{{ block.super }}
{% endblock %}

View File

@@ -0,0 +1 @@
{% extends "admin/object_history.html" %}