mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 07:28:24 -04:00
16 lines
361 B
HTML
16 lines
361 B
HTML
|
|
{% macro ajax_block(url, key, interval=2, finished=False) %}
|
||
|
|
{% if not finished %}
|
||
|
|
<div
|
||
|
|
data-module="update-content"
|
||
|
|
data-resource="{{ url }}"
|
||
|
|
data-key="{{ key }}"
|
||
|
|
data-interval-seconds="{{ interval }}"
|
||
|
|
aria-live="polite"
|
||
|
|
>
|
||
|
|
{% endif %}
|
||
|
|
{{ caller() }}
|
||
|
|
{% if not finished %}
|
||
|
|
</div>
|
||
|
|
{% endif %}
|
||
|
|
{% endmacro %}
|