blob: 8c0e112db65a66100bae0c54d431825e694e5e27 [file] [log] [blame]
{% load i18n %}
<div class="form-buttons clearfix">
{% if show_save %}<button type="submit" class="btn btn-high btn-success" name="_save">{% trans 'Save' %}</button>{% endif %}
{% if show_save_and_continue %}<button type="submit" name="_continue" class=" btn btn-high btn-info">{% trans 'Save and continue editing' %}</button>{% endif %}
{% if show_save_as_new %}<button type="submit" name="_saveasnew" class="btn btn-info">{% trans 'Save as new' %}</button>{%endif%}
{% if show_save_and_add_another %}<button type="submit" name="_addanother" class="btn btn-info">{% trans 'Save and add another' %}</button>{% endif %}
{% if show_delete_link %}
{% if custom_delete_url %}
<a href="{{ custom_delete_url }}" class="text-error deletelink">{% trans "Delete" %}</a>
{% else %}
<a href="delete/" class="text-error deletelink">{% trans "Delete" %}</a>
{% endif %}
{% endif %}
</div>