django-project/recipes/templates/recipes.html

16 lines
406 B
HTML

{% extends "base_main.html" %}
{% block title %}Recipes{% endblock %}
{% block main %}
<h1>Recipes</h1>
{% if perms.recipes.add_recipe %}
<p><a href="{% url 'add-recipe' %}">Add recipe</a></p>
{% endif %}
{% if perms.recipes.view_recipe %}
<ul>
{% for recipe in recipes %}
<li><a href="{{ recipe.get_absolute_url }}">{{ recipe.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}