{% extends 'base.html' %} {% block main %}

Title: {{ post.title }}

Author: {{ post.user.username }}

Description: {{ post.description }}

{%if post.image_file%} {%endif%}
{{ post.content }}

Comments

{% if username!='Guest' %} {% endif %}
{{ form.hidden_tag() }} {{ form.score.label }} {{ form.score() }}

{{ form.content.label }} {{ form.content() }}

{{ form.submit() }}
{% endblock main %}