TandoorRecipes/cookbook/templates/index.html
2018-01-31 23:40:16 +01:00

22 lines
444 B
HTML

{% extends "base.html" %}
{% block title %}Rezepte{% endblock %}
{% block content %}
<h1>Übersicht</h1>
<table class="table table-bordered table-hover">
<tr>
<th>Name</th>
<th>Kategorie</th>
</tr>
{% for recipe in recipes %}
<tr>
<td>{{ recipe.name }}</td>
<td>{{ recipe.category }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}