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

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.name}}

{% set fils = "product_%s.png" % product.name %}
{{"%0.2f" % product.price}} €
{% endif %} {% endfor %} {% endif %}
{% endblock %}