Started working on the skeleton of an actual website. Created barebones templates...
[~kgodey/maayanwich.git] / templates / allsandwiches.html
1 {% extends "base.html" %}
2
3 {% block content %}
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>
8                         <img class="sandwichimg" src="{{ s.picture.url }}">
9                         <h4 class="sandwichsub">Ingredients</h4>
10                         <ul class="ingredients">
11                                 {% for i in s.ingredients.all %}
12                                         <li>{{ i.name }}
13                                 {% endfor %}
14                         </ul>
15                         <h4 class="sandwichsub">Notes</h5>
16                         <p class="sandnotes"> {{ s.notes }}</p>
17                 {% endfor %}
18 {% endblock %}