summaryrefslogtreecommitdiffstats
path: root/google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html
diff options
context:
space:
mode:
Diffstat (limited to 'google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html')
-rw-r--r--google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html b/google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html
new file mode 100644
index 0000000..25f5819
--- /dev/null
+++ b/google_appengine/lib/django/django/contrib/admin/templates/admin/submit_line.html
@@ -0,0 +1,8 @@
+{% load i18n %}
+<div class="submit-row">
+{% if show_delete_link %}<p class="float-left"><a href="delete/" class="deletelink">{% trans "Delete" %}</a></p>{% endif %}
+{% if show_save_as_new %}<input type="submit" value="{% trans 'Save as new' %}" name="_saveasnew" {{ onclick_attrib }}/>{%endif%}
+{% if show_save_and_add_another %}<input type="submit" value="{% trans 'Save and add another' %}" name="_addanother" {{ onclick_attrib }} />{% endif %}
+{% if show_save_and_continue %}<input type="submit" value="{% trans 'Save and continue editing' %}" name="_continue" {{ onclick_attrib }}/>{% endif %}
+{% if show_save %}<input type="submit" value="{% trans 'Save' %}" class="default" {{ onclick_attrib }}/>{% endif %}
+</div>