2022-05-22 15:01:37 +00:00
|
|
|
{%- for id, route in xap.routes | dictsort %}
|
|
|
|
### {{ route.name }} - `{{ id }}`
|
|
|
|
{{ route.description }}
|
|
|
|
|
|
|
|
{% if route.routes %}
|
2022-05-22 20:12:32 +00:00
|
|
|
| Name | Route | Tags | Definition |
|
|
|
|
| -- | -- | -- | -- |
|
2022-05-22 15:01:37 +00:00
|
|
|
{%- for subid, subroute in route.routes | dictsort %}
|
2022-05-22 20:12:32 +00:00
|
|
|
| {{ subroute.name }} | `{{ id }} {{ subid }}` | {% if 'secure' == subroute.permissions %}__Secure__{% endif %} | {{ subroute.description.replace('\n', '<br>') }} |
|
2022-05-22 15:01:37 +00:00
|
|
|
{%- endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{%- endfor %}
|