{% extends "base.html"%} {% set title = "Konsumieren" %} {% block content %}

TODO:

Konsumieren

{% if message %}

{{ message }}

{% endif %}

{% if user.isblack %} Sorry, du bist geschwärzt! {% else %} Möchtest du etwas konsumieren? {% for product in products %} {% if product.isshown %}

{{ product.id }}, {{product.name}} , {{"%0.2f" % product.price}} €

{% endif %} {% endfor %} {% endif %}

{% endblock %}