X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/f3cb6c9aac4ebeec54e8a82959cf8d56b30b15b5..refs/heads/master:/templates/onesandwich.html?ds=sidebyside
diff --git a/templates/onesandwich.html b/templates/onesandwich.html
index d685ea3..d88cfbd 100644
--- a/templates/onesandwich.html
+++ b/templates/onesandwich.html
@@ -4,7 +4,17 @@
{% block content %}
{{ s.adjective }}
- Made on {{ s.date_made|date:"F j Y" }} and added by {% if s.user.first_name %} {{ s.user.first_name }} {% if s.user.last_name %} {{ s.user.last_name }} {% endif %} {% else %} {{ s.user.username }}. {% endif %}
+ 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 %}
@@ -15,16 +25,28 @@
{% endfor %}
{% if s.notes %}
- Notes
+ Notes
{{ s.notes }}
{% endif %}
{% load comments %}
{% get_comment_count for s as c %}
- Comments
+ {% ifequal c 1 %}
+ 1 Comment
+ {% else %}
+ {% ifequal c 0 %}
+
No comments
+ {% else %}
+ {{c}} Comments
+ {% endifequal %}
+ {% endifequal %}
+
{% get_comment_list for s as clist %}
{% for comment in clist %}
{{ comment.comment }}
{{ comment.submit_date }}
{% endfor %}
+
+
+ {% render_comment_form for s %}
{% endblock %}
\ No newline at end of file