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/view.html

24 lines
411 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
{%block title%}
Worblehat 0.1: Kategori: {{ category }}
{% endblock %}
{% block content %}
{{ category }}<br />
{% if not book_list %}
Det finnes ingen bøker i denne kategorien.
{% else %}
Følgende bøker finnes i denne kategorien:
<ul>
{% for book in book_list %}
<li><a href="/bok/{{ book.id }}">{{ book }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}