2015-12-14 16:53:07 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2017-07-24 15:36:38 +01:00
|
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
2016-01-19 09:55:13 +00:00
|
|
|
|
{% from "components/table.html" import list_table, field, hidden_field_heading %}
|
2016-04-25 09:48:26 +01:00
|
|
|
|
{% from "components/api-key.html" import api_key %}
|
2016-09-20 11:34:37 +01:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
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 %}
|
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-30 16:20:45 +00:00
|
|
|
|
|
2019-02-01 12:36:03 +00:00
|
|
|
|
<h1 class="heading-large">
|
|
|
|
|
|
API keys
|
|
|
|
|
|
</h1>
|
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,
|
2017-03-15 12:50:45 +00:00
|
|
|
|
empty_message="You haven’t created any API keys yet",
|
|
|
|
|
|
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 whitelist – limits who you can send to
|
|
|
|
|
|
{% 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') %}
|
|
|
|
|
|
<span class='hint'>Revoked {{ item.expiry_date|format_datetime_short }}</span>
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
{% call field(align='right', status='error') %}
|
|
|
|
|
|
<a href='{{ url_for('.revoke_api_key', service_id=current_service.id, key_id=item.id) }}'>Revoke</a>
|
|
|
|
|
|
{% 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">
|
|
|
|
|
|
<a href="{{ url_for('.create_api_key', service_id=current_service.id) }}" class="button-secondary">Create an API key</a>
|
|
|
|
|
|
</div>
|
2016-04-25 09:48:26 +01:00
|
|
|
|
|
2015-11-30 16:20:45 +00:00
|
|
|
|
{% endblock %}
|