{% extends "base.html" %} {% comment %} # This file is part of k4ever, a point-of-sale system # Contact............ # 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" %} {% if allMostDrinks or allMostSnacks %}
  Die beliebtesten Artikel Deine Lieblingsartikel Zuletzt hattest du
Getränke {% include "main/product_list.html" with buyables=allMostDrinks %} {% include "main/product_list.html" with buyables=usersMostDrinks %} {% include "main/product_list.html" with buyables=usersLastDrinks %}
Snacks {% include "main/product_list.html" with buyables=allMostSnacks %} {% include "main/product_list.html" with buyables=usersMostSnacks %} {% include "main/product_list.html" with buyables=usersLastSnacks %}
{% else %} {{ error }} Es hat scheinbar noch niemand etwas gekauft. Sei der Erste! {% endif %} {% endblock %}