20 lines
370 B
HTML
20 lines
370 B
HTML
{% extends "base.html" %}
|
|
{% load django_tables2 %}
|
|
|
|
{% block title %}Rezepte{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
Rezepte
|
|
</h3>
|
|
|
|
{% if recipes %}
|
|
{% render_table recipes %}
|
|
{% else %}
|
|
<div class="alert alert-danger" role="alert">
|
|
Log dich ein um die Rezepte zu sehen!
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %} |