{% extends "base.html" %} {% block title %} Moderate Comments - {{ video.title }} {% endblock %} {% block content %}

{{ video.title }}

Moderation Settings

Safe Comments ({{ safe_comments|length }})

{% for comment in safe_comments %}

{{ comment.text }}

{{ comment.author }} Safe
{% endfor %}

Flagged Comments ({{ flagged_comments|length }})

{% for comment in flagged_comments %}

{{ comment.text }}

{{ comment.author }}
Gambling Confidence: {{ comment.metrics.confidence_score }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}