Files
notifications-admin/app/templates/components/ajax-block.html
Beverly Nguyen d8ca53e08b clean up
2025-04-09 17:17:01 -07:00

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 %}