mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
17 lines
655 B
HTML
17 lines
655 B
HTML
{% extends "admin/change_form.html" %}
|
|
{% load i18n admin_urls %}
|
|
{% block submit_buttons_bottom %}
|
|
<div class="submit-row"
|
|
{% if is_popup %}style="overflow: auto;" {% endif %}
|
|
>
|
|
<input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/>
|
|
{% if not add %}
|
|
<p class="deletelink-box">
|
|
{% url opts|admin_urlname:'delete' original.pk|admin_urlquote as delete_url %}
|
|
<a href="{% add_preserved_filters delete_url %}" class="deletelink">
|
|
{% trans "Delete" %}
|
|
</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|