Files
LifeFaq/templates/route_list.html
Henrik Jess Nielsen d58e5b0d12
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 39s
Middelware update and footer content
2024-12-20 22:35:39 +01:00

12 lines
269 B
HTML

<h3>Næste Kategori</h3>
{% if request.state.next_category %}
<p>
<a href="/category/{{ request.state.next_category.path }}">
{{ request.state.next_category.name }}
</a>
</p>
{% else %}
<p>Ingen næste kategori.</p>
{% endif %}