{% load comments %} {% load i18n %} {% if user.is_authenticated %}
{% get_comment_form for place as form %}
{% csrf_token %}

{{user.get_full_name}} {% trans "tell us what you think" %}

{{form.content_type}}{{form.object_pk}}{{form.timestamp}}{{form.security_hash}}

{{form.comment}} {{form.comment.errors}}

{%else%}

{% trans "Login to comment" %}

{%endif%}