1 {% extends "base.html" %}
4 {% for s in allsandwiches %}
5 <h3 class="sandwichtitle">{{ s.adjective }}</h3>
6 <p class="metadata">Made on {{ s.date_made }} and added by {{ s.user.username }}.</p>
8 <img class="sandwichimg" src="{{ s.picture.url }}">
10 <h4 class="sandwichsub">Ingredients</h4>
11 <ul class="ingredients">
12 {% for i in s.ingredients.all %}
17 <h4 class="sandwichsub">Notes</h5>
18 <p class="sandnotes"> {{ s.notes }}</p>