{% ifequal image.rating.get_rating 0 %}
Current rating is: No rating yet
{% else %}
Average Current rating is: {{ image.rating.get_rating }}
Total Number of votes is: {{ image.rating_votes }}
{% endifequal %}
{% if user.is_authenticated %}
{% endif %}
{% trans "Tags" %} :
{% tags_for_object image as tag_list %}
{% for tag in tag_list %}
{{ tag }}
{% empty %}
{% trans "No tags" %}
{% endfor %}
{% block nodetype-comments %}
{% trans "Comments" %}
{% with image.comments as comment_list %}
{% if comment_list.count %}
{% for comment in comment_list %}
{% trans "Comments" %}
{% with image.comments as comment_list %} {% if comment_list.count %}{% for comment in comment_list %}-
{% if comment.url %}
{{ comment.user_name }}
{% else %}
{{ comment.user_name }}
{% endif %}
{% trans "on" %} {{ comment.submit_date|date:"SHORT_DATETIME_FORMAT" }}
{{ comment.comment|linebreaks }}
{% endfor %}
{% if not image.comments_are_open %}{% trans "Comments are closed." %}
{% endif %} {% else %} {% if image.comments_are_open %}{% trans "No comments yet." %}
{% else %}{% trans "Comments are closed." %}
{% endif %} {% endif %} {% endwith %}