{% extends "base_pico.html" %} {% load i18n static %} {% block title %}Sandwitches{% endblock %} {% block content %}

{% trans 'Sandwitches: sandwiches so good, they haunt you!' %}

{% for recipe in recipes %}
{% if recipe.image %}
{{ recipe.title }}
{% endif %}
{{ recipe.title }}
{% for tag in recipe.tags.all %} {{ tag.name }} {% endfor %}
{% if user.is_authenticated and user.is_staff %} {% endif %}
{% empty %}

{% trans "No sandwitches yet, please stay tuned." %}

{% endfor %}
{% endblock %} {% block page_scripts %} {% endblock %}