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

25 lines
409 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
{%block title%}
{{ category }}
{% endblock %}
{% block content %}
<h2>{{ category }}</h2>
2011-03-06 23:42:01 +01:00
{% if book_list %}
<a href="/kart?vis={{ category.id }}">Vis i kart.</a></li>
{% endif %}
{% if book_list %}
<div class="key">Bøker:</div>
<ul>
{% for book in book_list %}
<li><a href="/bok/{{ book.isbn }}">{{ book }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}