{% extends 'endpoints/base.html' %} {% load static %} {% block title %}Endpoints{% endblock %} {% block main %}

ENDPOINTS

Service

{% for app_name, urls in app_urls.items %} {% if app_name != 'admin' %}

{{ app_name|capfirst }}

    {% for url in urls %}
  • {{ url }}
  • {% endfor %}
{% endif %} {% endfor %}

Media

    {% for url in media_urls %}
  • {{ url }}
  • {% endfor %}

Static

    {% for url in static_urls %}
  • {{ url }}
  • {% endfor %}
{% endblock %}