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

11 lines
309 B
HTML
Raw Normal View History

2017-09-26 15:51:36 +01:00
{% 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">
2016-01-15 10:50:10 +00:00
<span class="api-key-key">{{ key }}</span>
</div>
{% endmacro %}