mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-10 15:13:40 -05:00
when you hit the delete button, it flashes the delete button and takes you to the `/service/../user/../delete` url. If you then click the save button, it would make a POST to the delete URL... and delete the user. now the page stays on the edit url, but adds a `?delete=yes` query string. The dangerous flash banner now has an action field which defines where the browser will make the POST to (which remains at /delete).
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% macro banner(body, type=None, with_tick=False, delete_button=None, subhead=None, context=None, action=None) %}
|
|
<div
|
|
class='banner{% if type %}-{{ type }}{% endif %}{% if with_tick %}-with-tick{% endif %}'
|
|
{% if type == 'dangerous' %}
|
|
role='group'
|
|
tabindex='-1'
|
|
{% endif %}
|
|
>
|
|
{% if subhead -%}
|
|
<h1 class="banner-title">{{ subhead }}</h1>
|
|
{%- endif -%}
|
|
{{ body }}
|
|
{% if context %}
|
|
<p>
|
|
{{ context }}
|
|
</p>
|
|
{% endif %}
|
|
{% if delete_button %}
|
|
{% call form_wrapper(action=action) %}
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<button type="submit" class="button" name="delete">{{ delete_button }}</button>
|
|
{% endcall %}
|
|
{% endif %}
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
{% macro banner_wrapper(type=None, with_tick=False, delete_button=None, subhead=None, action=None) %}
|
|
{{ banner(caller()|safe, type=type, with_tick=with_tick, delete_button=delete_button, subhead=subhead, action=action) }}
|
|
{% endmacro %}
|