Files
notifications-admin/app/templates/components/api-key.html

9 lines
268 B
HTML
Raw Normal View History

{% macro api_key(key, name, thing="API key") %}
<h2 class="api-key-name">
{{ name }}
</h2>
<div data-module="api-key" data-key="{{ key }}" data-thing="{{ thing }}" aria-live="assertive">
<span class="api-key-key">{{ key }}</span>
</div>
{% endmacro %}