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 %}
|
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
|
|
|
|
|
2016-09-20 11:51:09 +01:00
|
|
|
|
<div class="grid-row">
|
2016-04-25 09:50:17 +01:00
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
|
<h1 class="heading-large">
|
2016-09-20 11:34:37 +01:00
|
|
|
|
API keys
|
2016-04-25 09:50:17 +01:00
|
|
|
|
</h1>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-one-third">
|
2016-04-29 14:17:34 +01:00
|
|
|
|
<a href="{{ url_for('.create_api_key', service_id=current_service.id) }}" class="button align-with-heading">Create an API key</a>
|
2016-04-25 09:50:17 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2017-03-15 12:50:45 +00:00
|
|
|
|
<div class="body-copy-table">
|
|
|
|
|
|
{% call(item, row_number) list_table(
|
|
|
|
|
|
keys,
|
|
|
|
|
|
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
|
|
|
|
|
2016-09-20 11:34:37 +01:00
|
|
|
|
{{ page_footer(
|
|
|
|
|
|
secondary_link=url_for('.api_integration', service_id=current_service.id),
|
|
|
|
|
|
secondary_link_text='Back to API integration'
|
|
|
|
|
|
) }}
|
2016-04-25 09:48:26 +01:00
|
|
|
|
|
2015-11-30 16:20:45 +00:00
|
|
|
|
{% endblock %}
|