diff --git a/swh/web/ui/templates/api-endpoints.html b/swh/web/ui/templates/api-endpoints.html index 8db90f86b..ee254388f 100644 --- a/swh/web/ui/templates/api-endpoints.html +++ b/swh/web/ui/templates/api-endpoints.html @@ -1,63 +1,69 @@ {% extends "layout.html" %} {% block title %} Software Heritage API – Endpoints {% endblock %} {% block content %}
- Below you can find a list of available and upcoming endpoints for version 1 - of the Software Heritage API. For a more general introduction please refer to - the API overview. +

+ Below you can find a list of the available endpoints for version 1 of the + Software Heritage API. For a more general introduction please refer to + the API overview. +

-
{% for route, doc in doc_routes %} {% if 'tags' in doc and doc['tags'] is not none %} {% else %} {% endif %} {% set doc_intro = doc['docstring'].split('\n\n')[0] %} {% endfor %}
Endpoint Status Description
{{ route }} {{ ', '.join(doc['tags']) }}{{ route }} available{{ doc_intro | safe_docstring_display | safe }}
{% endblock %}