{{ filename }}
Your browser doesn't support video tag.
{% if current_user.is_authenticated and video and (current_user.is_admin() or video.owner_username == current_user.username) %}
{% endif %}
{% if video %}
{% endif %}
{% if current_user.is_authenticated and video %}
Comments ({{ video.comments | length }})
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if current_user.is_authenticated %} {% else %}Log in to post a comment.
{% endif %} {% if video.comments %}{% for comment in video.comments %}-
{{ comment.author_username }}
{{ comment.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if current_user.is_authenticated and comment.author_username == current_user.username %}
{% elif current_user.is_authenticated and current_user.is_admin() %}
{% endif %}
{{ comment.content | urlize }}
{% if current_user.is_authenticated and comment.author_username == current_user.username %}
{% endif %}
{% endfor %}
{% else %}No comments yet. Be the first to comment!
{% endif %}