diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2011-10-10 22:19:59 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2011-10-10 22:19:59 +0000 |
| commit | 4725a732e7b102636598e31fea4f683069a73086 (patch) | |
| tree | dad48af2c4ddbf821ff6e39a1cf8f6078d066ddc | |
| parent | c61987d75ad9bc5233257f46a8246bb9d63bbbe1 (diff) | |
Fixed #9460 -- Added template blocks for submit buttons rows in admin app model add/change views.
This allows for easier customization. Thanks kosmik for report and patch.
Refs #13875.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16956 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/admin/change_form.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/change_form.html b/django/contrib/admin/templates/admin/change_form.html index 77d692c63b..14bc76d6be 100644 --- a/django/contrib/admin/templates/admin/change_form.html +++ b/django/contrib/admin/templates/admin/change_form.html @@ -40,7 +40,7 @@ <form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.module_name }}_form">{% csrf_token %}{% block form_top %}{% endblock %} <div> {% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %} -{% if save_on_top %}{% submit_row %}{% endif %} +{% if save_on_top %}{% block submit_buttons_top %}{% submit_row %}{% endblock %}{% endif %} {% if errors %} <p class="errornote"> {% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} @@ -64,7 +64,7 @@ {% block after_related_objects %}{% endblock %} -{% submit_row %} +{% block submit_buttons_bottom %}{% submit_row %}{% endblock %} {% if adminform and add %} <script type="text/javascript">document.getElementById("{{ adminform.first_field.id_for_label }}").focus();</script> |
