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