Login view works! Forms have been reshuffled (Django apparently comes with built...
[~kgodey/maayanwich.git] / templates / onesandwich.html
1 <html>
2         <head>
3                 <title>Every Ma'ayanwich Ever!</title></head>
4         <body>
5                 <h3>{{ s.adjective }}</h3>
6                 <p>Made on {{ s.date_made }} and added by {{ s.user.username }}.</p>
7                 <img src="{{ s.picture.url }}">
8                 <h5>Ingredients</h5>
9                 <ul>
10                         {% for i in s.ingredients.all %}
11                                 <li>{{ i.name }}
12                         {% endfor %}
13                 </ul>
14                 <h5>Notes</h5>
15                 <p> {{ s.notes }}</p>
16         </body>
17 </html>