diff --git a/app/templates/admin_template.html b/app/templates/admin_template.html
index 02564240d..7789e26bb 100644
--- a/app/templates/admin_template.html
+++ b/app/templates/admin_template.html
@@ -101,7 +101,15 @@
Documentation
- Terms of use
- - API documentation
+ {% for language, url in [
+ ('Java', 'https://github.com/alphagov/notifications-java-client'),
+ ('Node JS', 'https://github.com/alphagov/notifications-node-client'),
+ ('PHP', 'https://github.com/alphagov/notifications-php-client'),
+ ('Python', 'https://github.com/alphagov/notifications-python-client'),
+ ('Ruby', 'https://github.com/alphagov/notifications-ruby-client')
+ ] %}
+ - {{ language }} client
+ {% endfor %}
diff --git a/app/templates/views/api-keys.html b/app/templates/views/api-keys.html
index 78ba560ed..22d3cc12d 100644
--- a/app/templates/views/api-keys.html
+++ b/app/templates/views/api-keys.html
@@ -58,11 +58,19 @@
{{ api_key(current_service.id, "Service ID", thing="service ID") }}
- Documentation
-
- See the
-
- API documentation for clients and specfications.
-
+ API clients
+
+ {% for name, url in [
+ ('Java', 'https://github.com/alphagov/notifications-java-client'),
+ ('Node JS', 'https://github.com/alphagov/notifications-node-client'),
+ ('PHP', 'https://github.com/alphagov/notifications-php-client'),
+ ('Python', 'https://github.com/alphagov/notifications-python-client'),
+ ('Ruby', 'https://github.com/alphagov/notifications-ruby-client')
+ ] %}
+ -
+ {{ name }}
+
+ {% endfor %}
+
{% endblock %}
diff --git a/app/templates/views/send-from-api.html b/app/templates/views/send-from-api.html
index 9add19598..4a0a91b6f 100644
--- a/app/templates/views/send-from-api.html
+++ b/app/templates/views/send-from-api.html
@@ -37,8 +37,4 @@
{{ personalisation|syntax_highlight_json }}
{% endif %}
-
-
See the developer documentation for full details.
-
-
{% endblock %}
diff --git a/tests/app/main/views/test_dashboard.py b/tests/app/main/views/test_dashboard.py
index b1cc51ccb..1be535cbd 100644
--- a/tests/app/main/views/test_dashboard.py
+++ b/tests/app/main/views/test_dashboard.py
@@ -277,7 +277,6 @@ def test_menu_send_messages(mocker,
service_id=service_one['id'],
template_type='sms')in page
assert url_for('main.manage_users', service_id=service_one['id']) in page
- assert url_for('main.documentation') in page
assert url_for('main.service_settings', service_id=service_one['id']) not in page
assert url_for('main.api_keys', service_id=service_one['id']) not in page
@@ -312,7 +311,6 @@ def test_menu_manage_service(mocker,
template_type='sms') in page
assert url_for('main.manage_users', service_id=service_one['id']) in page
assert url_for('main.service_settings', service_id=service_one['id']) in page
- assert url_for('main.documentation') in page
assert url_for('main.api_keys', service_id=service_one['id']) not in page
assert url_for('main.show_all_services') not in page