{% extends "studio/base.html" %} {% block studio_title %}Routes{% endblock %} {% block studio_content %}

Routes

{{ rules | length }} registered routes

{% for route in rules %} {% endfor %}
Methods Endpoint URL
{% for method in route.methods %} {% if method == "GET" %} {{ method }} {% elif method == "POST" %} {{ method }} {% elif method in ("PUT", "PATCH") %} {{ method }} {% elif method == "DELETE" %} {{ method }} {% else %} {{ method }} {% endif %} {% endfor %}
{{ route.endpoint }} {% if route.linkable %} {{ route.rule }} {% else %} {{ route.rule }} {% endif %}
{% endblock %}