X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/735e53fa41a4911c1464a25ed0f24ac8769b878f..808fb552369a814e41d8241c36168e56681ea69b:/templates/allsandwiches.html diff --git a/templates/allsandwiches.html b/templates/allsandwiches.html index 4877263..eaaba21 100644 --- a/templates/allsandwiches.html +++ b/templates/allsandwiches.html @@ -1,18 +1,40 @@ {% extends "base.html" %} +{% block title %}All Sandwiches{% endblock %} + {% block content %} -

All Ma'ayanwiches

{% for s in allsandwiches %}

{{ s.adjective }}

-

Made on {{ s.date_made }} and added by {{ s.user.username }}.

- +

Made on {{ s.date_made|date:"F j Y" }} and added by + {% ifequal s.user request.user %} you. + (Edit) + {% else %} + {% if s.user.first_name %} {{ s.user.first_name }} + {% if s.user.last_name %} {{ s.user.last_name }} + {% endif %} + {% else %} + {{ s.user.username }}. + {% endif %} + {% endifequal %}

+ {% if s.picture %} + + {% endif %}

Ingredients

-

Notes

-

{{ s.notes }}

+ {% if s.notes %} +

Notes

+

{{ s.notes }}

+ {% endif %} + {% load comments %} + {% get_comment_count for s as c %} + {% ifequal c 1 %} +

1 comment

+ {% else %} +

{{ c }} comments

+ {% endifequal %} {% endfor %} {% endblock %} \ No newline at end of file