/django/contrib/admin/templates/admin/submit_line.html
HTML | 8 lines | 8 code | 0 blank | 0 comment | 0 complexity | 022454a215f2069fafa7566ba7a9bc70 MD5 | raw file
Possible License(s): BSD-3-Clause
1{% load i18n %} 2<div class="submit-row" {% if is_popup %}style="overflow: auto;"{% endif %}> 3{% if show_save %}<input type="submit" value="{% trans 'Save' %}" class="default" name="_save" {{ onclick_attrib }}/>{% endif %} 4{% if show_delete_link %}<p class="deletelink-box"><a href="delete/" class="deletelink">{% trans "Delete" %}</a></p>{% endif %} 5{% if show_save_as_new %}<input type="submit" value="{% trans 'Save as new' %}" name="_saveasnew" {{ onclick_attrib }}/>{%endif%} 6{% if show_save_and_add_another %}<input type="submit" value="{% trans 'Save and add another' %}" name="_addanother" {{ onclick_attrib }} />{% endif %} 7{% if show_save_and_continue %}<input type="submit" value="{% trans 'Save and continue editing' %}" name="_continue" {{ onclick_attrib }}/>{% endif %} 8</div>