1 {% extends "base.html" %}
3 {% block title %}All Sandwiches{% endblock %}
6 {% for s in allsandwiches %}
7 <h3 class="sandwichtitle">{{ s.adjective }}</h3>
8 <p class="metadata">Made on {{ s.date_made|date:"F j Y" }} and added by
9 {% ifequal s.user request.user %} you.
10 <a href="{% url edit_sandwich slug=s.slug %}"> (Edit)
12 {% if s.user.first_name %} {{ s.user.first_name }}
13 {% if s.user.last_name %} {{ s.user.last_name }}
16 {{ s.user.username }}.
20 <img class="sandwichimg" src="{{ s.picture.url }}">
22 <h4 class="sandwichsub">Ingredients</h4>
23 <ul class="ingredients">
24 {% for i in s.ingredients.all %}
29 <h4 class="sandwichsub">Notes</h4>
30 <p class="sandnotes"> {{ s.notes }}</p>
33 {% get_comment_count for s as c %}
35 <p class="sandnotes"><a href="{{ s.get_absolute_url }}">1 comment</a></p>
37 <p class="sandnotes"><a href="{{ s.get_absolute_url }}">{{ c }} comments</a></p>