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 %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('main.api_integration', service_id=current_service.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-30 16:20:45 +00:00
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('API keys') }}
|
2017-07-24 15:36:38 +01:00
|
|
|
|
|
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' %}
|
2020-06-12 09:00:08 +01:00
|
|
|
|
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>
|
2016-01-19 09:55:13 +00:00
|
|
|
|
{% endcall %}
|
2017-03-15 12:50:45 +00:00
|
|
|
|
{% 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 %}
|
|
|
|
|
|
</div>
|
2016-01-19 09:55:13 +00:00
|
|
|
|
|
2019-02-01 12:36:03 +00:00
|
|
|
|
<div class="js-stick-at-bottom-when-scrolling">
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaButton({
|
2020-01-30 14:01:13 +00:00
|
|
|
|
"element": "a",
|
|
|
|
|
|
"text": "Create an API key",
|
|
|
|
|
|
"href": url_for('.create_api_key', service_id=current_service.id),
|
|
|
|
|
|
"classes": "govuk-button--secondary"
|
|
|
|
|
|
}) }}
|
2019-02-01 12:36:03 +00:00
|
|
|
|
</div>
|
2016-04-25 09:48:26 +01:00
|
|
|
|
|
2015-11-30 16:20:45 +00:00
|
|
|
|
{% endblock %}
|