{% endblock %}
{% block content %}
{% regroup endpoints by name_parent as endpoints_grouped %}
{% if endpoints_grouped %}
{% for group in endpoints_grouped %}
{{group.grouper}}
{% for endpoint in group.list %}
{{ endpoint.path }}
{% for method in endpoint.allowed_methods %}
{{ method }}
{% endfor %}
{% if endpoint.errors %}
Oops! There was something wrong with {{ endpoint.errors }}. Please check your code.