Files
notifications-admin/app/templates/views/api/keys.html
T

69 lines
2.2 KiB
HTML
Raw Normal View History

2015-12-14 16:53:07 +00:00
{% extends "withnav_template.html" %}
2016-01-19 09:55:13 +00:00
{% from "components/table.html" import list_table, field, hidden_field_heading %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2023-08-30 11:07:38 -04:00
{% from "components/components/button/macro.njk" import usaButton %}
{% from "components/components/back-link/macro.njk" import usaBackLink %}
2015-11-30 16:20:45 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
API keys
2015-11-30 16:20:45 +00:00
{% endblock %}
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for('main.api_integration', service_id=current_service.id) }) }}
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
2015-11-30 16:20:45 +00:00
{{ page_header('API keys') }}
2017-03-15 12:50:45 +00:00
<div class="body-copy-table">
{% call(item, row_number) list_table(
2018-11-07 11:35:24 +00:00
current_service.api_keys,
2019-09-13 12:54:56 +01:00
empty_message="You have not created any API keys yet",
2017-03-15 12:50:45 +00:00
caption="API keys",
caption_visible=false,
field_headings=[
'API keys',
'Action'
],
field_headings_visible=False
) %}
{% call field() %}
<div class="file-list">
{{ item.name }}
<div class="hint">
{% if item.key_type == 'normal' %}
Live sends to anyone
{% elif item.key_type == 'team' %}
Team and guest list limits who you can send to
2017-03-15 12:50:45 +00:00
{% elif item.key_type == 'test' %}
Test pretends to send messages
{% endif %}
</div>
</div>
{% endcall %}
{% if item.expiry_date %}
{% call field(align='right') %}
2024-03-18 15:10:26 -07:00
<span class='hint'>Revoked {{ item.expiry_date|format_datetime_table }}</span>
2017-03-15 12:50:45 +00:00
{% endcall %}
{% else %}
{% call field(align='right', status='error') %}
2023-08-08 16:19:17 -04:00
<a class="usa-link usa-link--destructive" href='{{ url_for('.revoke_api_key', service_id=current_service.id, key_id=item.id) }}'>
2023-06-16 14:55:24 -04:00
Revoke<span class="usa-sr-only"> {{ item.name }}</span>
2021-02-23 14:53:33 +00:00
</a>
2017-03-15 12:50:45 +00:00
{% endcall %}
{% endif %}
{% endcall %}
2017-03-15 12:50:45 +00:00
</div>
2016-01-15 11:41:31 +00:00
<div class="js-stick-at-bottom-when-scrolling">
2023-08-30 11:07:38 -04:00
{{ usaButton({
"element": "a",
"text": "Create an API key",
"href": url_for('.create_api_key', service_id=current_service.id),
"classes": "govuk-button--secondary"
}) }}
</div>
2015-11-30 16:20:45 +00:00
{% endblock %}