You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k4ever/k4ever/main/templates/main/startpage.html

46 lines
1.2 KiB

{% extends "base.html" %}
{% block "content" %}
{% if allMostDrinks or allMostSnacks %}
<table class="itemListContainer">
<thead>
<tr>
<td role="presentation">&nbsp;</td>
<th scope="column">Die beliebtesten Artikel</th>
<th scope="column">Deine Lieblingsartikel</td>
<th scope="column">Zuletzt hattest du</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Getränke</th>
<td>
{% include "main/product_list.html" with buyables=allMostDrinks %}
</td>
<td>
{% include "main/product_list.html" with buyables=usersMostDrinks %}
</td>
<td>
{% include "main/product_list.html" with buyables=usersLastDrinks %}
</td>
</tr>
<tr>
<th scope="row">Snacks</th>
<td>
{% include "main/product_list.html" with buyables=allMostSnacks %}
</td>
<td>
{% include "main/product_list.html" with buyables=usersMostSnacks %}
</td>
<td>
{% include "main/product_list.html" with buyables=usersLastSnacks %}
</td>
</tr>
</tbody>
</table>
{% else %}
{{ error }}
Es hat scheinbar noch niemand etwas gekauft. <a href="/store/">Sei der Erste!</a>
{% endif %}
{% endblock %}