TandoorRecipes/cookbook/templates/index.html
2018-02-01 00:20:47 +01:00

13 lines
186 B
HTML

{% extends "base.html" %}
{% load django_tables2 %}
{% block title %}Rezepte{% endblock %}
{% block content %}
<h1>Übersicht</h1>
{% render_table recipes %}
{% endblock %}