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

15 lines
385 B
HTML

{% extends "base.html"%}
{% set title = "Konsumatverwaltung" %}
{% block content %}
<h3>TODO: </h3>
<ul>
<li>add "change products pages"</li>
</ul>
<h1> Konsumatverwaltung </h1>
{% for product in products %}
<div><p> {{ product.id }}, {{product.name}}, {{product.price}} €</p></div>
{% endfor %}
<a href=/manage_beverages/add>Getränk Hinzufügen</a></li>
{% endblock %}