mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-31 11:49:58 -04:00
15 lines
337 B
HTML
15 lines
337 B
HTML
{% macro ajax_block(partials, url, key, finished=False, form='') %}
|
|
{% if not finished %}
|
|
<div
|
|
data-module="update-content"
|
|
data-resource="{{ url }}"
|
|
data-key="{{ key }}"
|
|
data-form="{{ form }}"
|
|
>
|
|
{% endif %}
|
|
{{ partials[key]|safe }}
|
|
{% if not finished %}
|
|
</div>
|
|
{% endif %}
|
|
{% endmacro %}
|