{% extends "docca/base.html" %} {% block title %}API Documentation{% endblock %} {% block meta_description %}{% endblock %} {% block content %}
{# Sidebar #}
{# Main content #}
{% if not tag_groups and not untagged %}
No published endpoints yet. Run python manage.py syncdocs --all to populate the portal.
{% endif %} {% for group in tag_groups %}

{{ group.tag.name }}

{% if group.tag.description %}

{{ group.tag.description }}

{% endif %} {% for ep in group.endpoints %} {% include "docca/_endpoint_card.html" with ep=ep %} {% endfor %}
{% endfor %} {% if untagged %}

Other

{% for ep in untagged %} {% include "docca/_endpoint_card.html" with ep=ep %} {% endfor %}
{% endif %}
{% endblock %}