X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/df689da172dfd36fe2512833a5c7c07ad5cb6446..695fbac5cde9f2b38d3b67247480d7f470754331:/templates/allsandwiches.html diff --git a/templates/allsandwiches.html b/templates/allsandwiches.html index 24f15b7..eaaba21 100644 --- a/templates/allsandwiches.html +++ b/templates/allsandwiches.html @@ -1,10 +1,21 @@ {% 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 %} @@ -14,7 +25,16 @@
  • {{ i.name }} {% endfor %} -

    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