{% extends 'layouts/index.html' %} {% set use_jquery = true %} {% set use_likes = true %} {% block content %}
{% if current_user.is_authenticated %} {% endif %} {{ post.text }}
{% with comment_count = post.comments|length %} Posted by {{ post.author.name }} {{ post.get_time_ago() }} ago. | {{ comment_count }} comment{{ comment_count|pluralize }} | {{ post.get_like_text()|safe }} {% endwith %}
{% if current_user.is_authenticated %}
{{ form.csrf_token }} {{ form.text()|safe }}
{% endif %} {% for comment in post.comments %}
"{{ comment.text }}"{{ comment.author.name }}
{% endfor %}
{% endblock %}