k4ever/k4ever/main/templates/main/startpage.html

55 lines
1.5 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
2012-01-21 00:21:29 +01:00
{% comment %}
# This file is part of k4ever, a point-of-sale system
# Contact............ <k4ever@lists.someserver.de>
# Website............ http://k4ever.someserver.de/
# Bug tracker........ http://k4ever.someserver.de/report
#
# Licensed under GNU Affero General Public License v3 or later
{% endcomment %}
{% block "content" %}
2011-10-13 01:37:28 +02:00
{% if allMostDrinks or allMostSnacks %}
<table class="itemListContainer">
2011-10-13 01:37:28 +02:00
<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>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=allMostDrinks %}
</td>
<td>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=usersMostDrinks %}
</td>
<td>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=usersLastDrinks %}
</td>
</tr>
<tr>
2011-10-13 01:37:28 +02:00
<th scope="row">Snacks</th>
<td>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=allMostSnacks %}
</td>
<td>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=usersMostSnacks %}
</td>
<td>
2011-10-13 01:37:28 +02:00
{% include "main/product_list.html" with buyables=usersLastSnacks %}
</td>
</tr>
</tbody>
</table>
2011-03-05 04:09:04 +01:00
{% else %}
{{ error }}
Es hat scheinbar noch niemand etwas gekauft. <a href="/store/">Sei der Erste!</a>
2011-03-05 04:09:04 +01:00
{% endif %}
{% endblock %}