depicts/templates/catalog.html

26 lines
410 B
HTML
Raw Normal View History

2019-10-10 17:44:21 +01:00
{% extends "base.html" %}
{% block style %}
<style>
td { vertical-align: top; }
</style>
{% endblock %}
{% block content %}
<div class="p-2">
<table>
{% for item in items %}
<tr>
<td>
<img src="{{ item.image.thumburl }}">
</td>
<td>
<p>{{ item.label }}</p>
{# <pre>{{ item | pprint }}</pre> #}
</td>
</tr>
{% endfor %}
</div>
{% endblock %}