diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2007-09-07 02:45:32 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2007-09-07 02:45:32 +0000 |
| commit | 016f84ba34793bf5ee0c29f3f4daf54f152d7348 (patch) | |
| tree | 81b5abbb4419a9088f54d1aad1b7e5fd5bbab0f7 | |
| parent | 6aba7b25d9fc5258343a5a2fba134ad230f27908 (diff) | |
Pulled a fieldset tag out of the stacked edit inline template. Some design work is needed to actually support this, and trunk won't do it either.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/admin/edit_inline_stacked.html | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/edit_inline_stacked.html b/django/contrib/admin/templates/admin/edit_inline_stacked.html index 2bffda2967..8e0b65a0a5 100644 --- a/django/contrib/admin/templates/admin/edit_inline_stacked.html +++ b/django/contrib/admin/templates/admin/edit_inline_stacked.html @@ -3,7 +3,6 @@ <fieldset class="module aligned {{ bfset.fieldset.classes }}"> <h2>{{ bound_inline.verbose_name|title }} #{{ forloop.counter }}</h2> {% for bfset in bound_inline_object.form %} - <fieldset class="module aligned {{ bfset.fieldset.classes }}"> {% if bfset.fieldset.name %}<h2>{{ bfset.fieldset.name }}</h2>{% endif %} {% if bfset.fieldset.description %}<div class="description">{{ bfset.fieldset.description }}</div>{% endif %} {% for line in bfset %} @@ -21,7 +20,6 @@ {% endfor %} {{ bound_inline_object.pk_field.field }} {% if bound_inline.formset.deletable %}<div class="form-row">{{ bound_inline_object.deletion_field.field }} {{ bound_inline_object.deletion_field.label_tag }}</div>{% endif %} - </fieldset> {% endfor %} </fieldset> {% endfor %} |
