Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
worblehat-old/python/web/templates/category/index.html

15 lines
262 B
HTML

{% extends "base/main.html" %}
{%block title%}
Kategorier
{% endblock %}
{% block content %}
<h2>Kategorier:</h2>
<ul>
{% for category in categories %}
<li><a href="/kategori/{{ category.id }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}