Files
baroness/app/templates/consume.html
Ulrich Knechtelsdorfer c84212e151 inital commit
2016-02-13 16:18:48 +01:00

19 lines
479 B
HTML

{% extends "base.html"%}
{% set title = "Konsumieren" %}
{% block content %}
<h3>TODO: </h3>
<ul>
<li>add photos for products, add photos in database</li>
</ul>
<h1> Konsumieren </h1>
{% if message %}
<p> {{ message }} </p>
{% endif %}
<p>
Möchtest du etwas konsumieren?
{% for product in products %}
<div><p> {{ product.id }}, <a href="/consume?prodid={{product.id}}"> {{product.name}} </a>, {{product.price}} € </p> </div>
{% endfor %}
</p>
{% endblock %}