{% extends "studio/base.html" %} {% block studio_title %}Routes{% endblock %} {% block studio_content %}
{{ rules | length }} registered routes
| 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 %} |