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

9 lines
268 B
HTML
Raw Normal View History

2016-04-18 11:10:47 +01:00
{% macro api_key(key, name, thing="API key") %}
2016-01-19 09:55:13 +00:00
<h2 class="api-key-name">
{{ name }}
</h2>
<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 %}