website-htmx-rustelo-code/site/templates/build-tools/partials/route_table.tera

5 lines
506 B
Text
Raw Permalink Normal View History

2026-07-10 03:44:13 +01:00
| Path | Methods | Handler | Auth | Type |
|------|---------|---------|------|------|
{% for route in doc.routes %}
| [`{{ route.path }}`](reference.md#{{ route.anchor }}) | {% for method in route.methods %}<span style="background: {{ method | method_color }}; color: white; padding: 2px 6px; border-radius: 3px;">{{ method }}</span>{% if not loop.last %} {% endif %}{% endfor %} | `{{ route.handler }}` | {% if route.requires_auth %}🔒{% else %}🌐{% endif %} | {{ route.response_type }} |
{% endfor %}