mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 12:21:22 -05:00
11 lines
311 B
HTML
11 lines
311 B
HTML
{% macro api_key(key, name=None, thing="API key") %}
|
|
{% if name %}
|
|
<h2 class="api-key__name">
|
|
{{ name }}
|
|
</h2>
|
|
{% endif %}
|
|
<div data-module="api-key" data-key="{{ key }}" data-thing="{{ thing }}" aria-live="assertive">
|
|
<span class="api-key__key">{{ key }}</span>
|
|
</div>
|
|
{% endmacro %}
|