{% extends "base.html" %} {% block content %} {% for s in allsandwiches %}

{{ s.adjective }}

Made on {{ s.date_made|date:"F j Y" }} and added by {% if s.user.first_name %} {{ s.user.first_name }} {% if s.user.last_name %} {{ s.user.last_name }} {% endif %} {% else %} {{ s.user.username }}. {% endif %}

{% if s.picture %} {% endif %}

Ingredients

{% if s.notes %}

Notes

{{ s.notes }}

{% endif %} {% endfor %} {% endblock %}