{% extends "admin/change_form.html" %} {% comment %} Adds "Re-send now" to the change form's submit row. It is a submit button rather than a link, so re-sending is a POST carrying the change form's own CSRF token; ``formaction`` sends it to the re-send view instead of saving. Nothing on this page is saved by pressing it. This lives at the path ModelAdmin looks up first, so a host project that writes its own admin/notifier/notification/change_form.html still wins -- template DIRS are searched before app directories. {% endcomment %} {% block submit_buttons_bottom %} {{ block.super }} {% if notifier_resend_url %}
{% endif %} {% endblock %}