{% extends "gstudio/base.html" %} {% load adminmedia grp_tags %} {% load i18n comments gstudio_tags %} {% load tagging_tags comments i18n %} {% load gstudio_tags %}
{% block javascripts %} {% endblock %} {% block title %}{{ video.title }}{% endblock %} {% block content %}
{% trans "Comments" %}
{% with video.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 video.comments_are_open %}{% trans "Comments are closed." %}
{% endif %} {% else %} {% if video.comments_are_open %}{% trans "No comments yet." %}
{% else %}{% trans "Comments are closed." %}
{% endif %} {% endif %} {% endwith %}