{% extends "base.html" %} {% block title %} The {{ s.adjective }} Ma'ayanwich {% endblock %} {% block content %}

{{ s.adjective }}

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

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

Ingredients

{% if s.notes %}

Notes

{{ s.notes }}

{% endif %} {% load comments %} {% get_comment_count for s as c %}

Comments

{% get_comment_list for s as clist %} {% for comment in clist %}

{{ comment.user_name }} said:

{{ comment.comment }}

{{ comment.submit_date }}

{% endfor %} {% endblock %}