You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/flask_debugtoolbar/templates/panels/route_list.html

29 lines
646 B

<table>
<thead>
<tr>
<th>URL route</th>
<th>Endpoint name</th>
<th>HTTP methods</th>
<th>Is alias</th>
<th>Redirect to</th>
</tr>
</thead>
<tbody>
{% if routes %}
{% for route in routes|sort(attribute='rule') %}
<tr>
<td>{{ route.rule }}</td>
<td>{{ route.endpoint }}</td>
<td>{{ route.methods|sort|join(', ') }}</td>
<td>{{ route.alias }}</td>
<td>{{ route.redirect_to }}</td>
</tr>
{% endfor %}
{% else %}
<tr>
<td>No routes have been configured.</td>
</tr>
{% endif %}
</tbody>
</table>