2016-09-20 11:34:37 +01:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/table.html" import list_table, field, hidden_field_heading %}
|
|
|
|
|
|
{% from "components/api-key.html" import api_key %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
|
API integration – GOV.UK Notify
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2016-09-20 11:46:56 +01:00
|
|
|
|
<h1 class="heading-large bottom-gutter">
|
2016-09-20 11:34:37 +01:00
|
|
|
|
API integration
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
2016-09-20 11:46:56 +01:00
|
|
|
|
<nav class="grid-row">
|
|
|
|
|
|
<div class="column-half">
|
|
|
|
|
|
<a class="pill-separate-item" href="{{ url_for('.api_keys', service_id=current_service.id) }}">API keys</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-half">
|
|
|
|
|
|
<a class="pill-separate-item" href="{{ url_for('.api_documentation', service_id=current_service.id) }}">Documentation</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</nav>
|
2016-09-20 11:34:37 +01:00
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|