33 lines
978 B
HTML
33 lines
978 B
HTML
{% extends "base/main.html" %}
|
|
|
|
{% block title %}
|
|
Heisann!!
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
Velkommen til PVVs bokdatabase, Worblehat.<br/>
|
|
Her kan du søke etter bøker til din hjertens lyst, eller gå til hyllene:
|
|
<br/><br/>
|
|
{% for shelf in shelf_lists %}
|
|
<span class="img">
|
|
<table border="1" class="shelf" >
|
|
<caption class="caption">Hylle {{ shelf.shelf_name }}</caption>
|
|
{% for row in shelf.shelf_list %}
|
|
<tr>
|
|
{% for column in row %}
|
|
<td {% for category in column %}{% if category.id == highlight_string %}class="highlight"{% endif %}{% endfor %}>
|
|
<table>
|
|
{% for category in column %}
|
|
<tr><td {% if category.id == highlight_string %}class="highlight"{% 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 %}
|
|
{% endblock %}
|