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/map/index.html

35 lines
794 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
{%block title%}
Hyllekart
{% endblock %}
{% block content %}
{% for shelf in shelf_lists %}
<span class="img">
<table border="1" class="shelf" >
2011-03-06 22:53:58 +01:00
<caption class="caption">Hylle {{ shelf.shelf_name }}</caption>
{% for row in shelf.shelf_list %}
<tr>
{% for column in row %}
<td>
<table>
{% for category in column %}
2011-03-06 22:53:58 +01:00
<tr><td {% if category in highlight_list %}class="highlight"{% endif %}>{% if category in highlight_list %}!!{% endif %}<a href="/kategori/{{ category.id }}">{{ category }}</a></td></tr>
{% endfor %}
</table>
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</span>
<!---<li><a href="/kart/{{ shelf_name }}">{{ shelf_name }}</a></li>---!>
{% endfor %}
<br/>
<br/>
<br/>
{% endblock %}