Match Comments Management

Manage, edit, and delete match comments

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}

Bulk Operations

Delete comments for specific matches or all comments at once.

Delete Match Comments
Delete All Comments

Warning: This will permanently delete all comments in the database.

{% if table_columns|length > 2 %}

Column Management

Drop unwanted columns from the _motmcomments table.

Drop Column
Available Columns

Current columns in the table:

    {% for column in table_columns %} {% if column not in ['rowid', 'id'] %}
  • {{ column }}
  • {% endif %} {% endfor %}
{% endif %}

All Comments ({{ comments|length }})

{% if comments %}
{% for comment in comments %}
{{ comment.matchDate }} #{{ comment.comment_id }}

{{ comment.comment }}

{% endfor %}
{% else %}
No comments found

There are no comments in the database. Comments will appear here after users submit them during voting.

{% endif %}
{% if comments %}

Statistics

{{ comments|length }}

Total Comments

{{ match_dates|length }}

Unique Match Dates

{{ (comments|length / match_dates|length)|round(1) if match_dates|length > 0 else 0 }}

Avg Comments per Match

{% endif %}