10 lines
342 B
HTML
10 lines
342 B
HTML
{% extends "admin/change_form.html" %}
|
|
|
|
{% block submit_buttons_bottom %}
|
|
{{ block.super }}
|
|
<div class="submit-row" style="display:flex; justify-content:flex-end">
|
|
{# Posts the change form, which admin.response_change() intercepts. #}
|
|
<input type="submit" name="_send_test" value="Send test notification">
|
|
</div>
|
|
{% endblock %}
|