- {% block submit-row %}
- {% if show_save %}
- {% component "unfold/components/button.html" with submit=1 form=opts.model_name|add:"_form" name="_save" class="w-full lg:w-auto" %}
- {% trans "Save" %}
- {% endcomponent %}
- {% endif %}
-
- {% for action in actions_submit_line %}
- {% component "unfold/components/button.html" with submit=1 form=opts.model_name|add:"_form" name=action.attrs.name|default:action.action_name variant="default" class="w-full lg:w-auto" attrs=action.attrs %}
- {% if action.icon %}
-
- {{ action.icon }}
-
- {% endif %}
-
- {{ action.description }}
- {% endcomponent %}
- {% endfor %}
-
- {% if show_save_and_continue %}
- {% component "unfold/components/button.html" with submit=1 form=opts.model_name|add:"_form" name="_continue" variant="default" class="w-full lg:w-auto" %}
- {% if can_change %}
- {% trans "Save and continue editing" %}
- {% else %}
- {% trans "Save and view" %}
- {% endif %}
- {% endcomponent %}
- {% endif %}
-
- {% if show_save_and_add_another %}
- {% component "unfold/components/button.html" with submit=1 form=opts.model_name|add:"_form" name="_addanother" variant="default" class="w-full lg:w-auto" %}
- {% trans "Save and add another" %}
- {% endcomponent %}
- {% endif %}
-
- {% if show_save_as_new %}
- {% component "unfold/components/button.html" with submit=1 form=opts.model_name|add:"_form" name="_saveasnew" variant="default" class="w-full lg:w-auto" %}
- {% trans "Save as new" %}
- {% endcomponent %}
- {% endif %}
-
- {% if original and storefront_url %}
-
- open_in_new
- {% trans "See on site" %}
-
- {% endif %}
-
-
- {% if show_close or adminform.model_admin.change_form_show_cancel_button %}
- {% url opts|admin_urlname:'changelist' as changelist_url %}
- {% add_preserved_filters changelist_url as link %}
-
- {% component "unfold/components/button.html" with href=link variant="default" class="w-full lg:w-auto"%}
- {% trans "Close" %}
- {% endcomponent %}
- {% endif %}
-
- {% if show_delete_link and original %}
- {% url opts|admin_urlname:'delete' original.pk|admin_urlquote as delete_url %}
- {% add_preserved_filters delete_url as link %}
-
- {% component "unfold/components/button.html" with href=delete_url variant="danger" class="mr-auto w-full lg:w-auto" %}
- {% trans "Delete" %} {{ opts.verbose_name }}
- {% endcomponent %}
- {% endif %}
-
- {% endblock %}
-