2016-09-20 11:38:22 +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 %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block service_page_title %}
|
|
|
|
|
Documentation
|
2016-09-20 11:38:22 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
|
|
|
|
Documentation
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
<ul class="list list-bullet">
|
|
|
|
|
{% for name, url in [
|
|
|
|
|
('Java client', 'https://github.com/alphagov/notifications-java-client'),
|
2016-12-13 13:32:20 +00:00
|
|
|
('.NET client', 'https://github.com/alphagov/notifications-net-client'),
|
2016-09-20 11:38:22 +01:00
|
|
|
('Node JS client', 'https://github.com/alphagov/notifications-node-client'),
|
|
|
|
|
('PHP client', 'https://github.com/alphagov/notifications-php-client'),
|
|
|
|
|
('Python client', 'https://github.com/alphagov/notifications-python-client'),
|
|
|
|
|
('Ruby client', 'https://github.com/alphagov/notifications-ruby-client')
|
|
|
|
|
] %}
|
|
|
|
|
<li>
|
2016-10-18 13:47:43 +01:00
|
|
|
<a href="{{ url }}" target="_blank" rel="noopener noreferrer">{{ name }}</a>
|
2016-09-20 11:38:22 +01:00
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
2017-02-01 10:27:02 +00:00
|
|
|
<li><a href="{{ url_for("main.integration_testing") }}">Integration testing</a></li>
|
2016-09-20 11:38:22 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
secondary_link=url_for('.api_integration', service_id=current_service.id),
|
|
|
|
|
secondary_link_text='Back to API integration'
|
|
|
|
|
) }}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|