diff --git a/swh/web/ui/templates/api-endpoints.html b/swh/web/ui/templates/api-endpoints.html index d57130f9..3361933f 100644 --- a/swh/web/ui/templates/api-endpoints.html +++ b/swh/web/ui/templates/api-endpoints.html @@ -1,60 +1,61 @@ {% extends "layout.html" %} {% block title %}API endpoints overview{% endblock %} {% block content %}
This lists the current API endpoints for version 1. For a more general description, please refer to the main documentation.
{% for route, doc in doc_routes %} - {% if 'tags' in doc and doc['tags'] is not none %} + {% else %} + {% endif %} {% endfor %}
Route Status Description
{{ route }}{{ route }} {{ ', '.join(doc['tags']) }}{{ route }} opened{{ doc['docstring'] | safe_docstring_display | safe }}
{% endblock %}