{% extends "base.html" %} {% block title %}{{ article.title }} - 20min.ch Comment Analysis{% endblock %} {% block last_updated %}{{ now }}{% endblock %} {% block content %}

{{ article.title }}

View Original

Article ID: {{ article.id }}

Published:

Author: {{ article.author if article.author else 'Unknown' }}

Category: {{ article.category if article.category else 'Uncategorized' }}

{{ article.comments_count }}
Comments
{{ article.replies_count }}
Replies
{{ article.reactions_count }}
Reactions
Reaction Distribution
Commenting Timeline
Top Commenters
{% for user in top_users %} {% endfor %}
Username Comments Replies Total Reactions Bot Score
{{ user.username }} {{ user.comments_count }} {{ user.replies_count }} {{ user.reactions_received }} {{ user.bot_score }}
{% for comment in comments %}
{{ comment.author }} {% if comment.is_reply %} replying to {{ comment.parent_author }} {% endif %}

{{ comment.text }}

{% for reaction_type, count in comment.reactions.items() %} {% if count > 0 %} {{ reaction_type }}: {{ count }} {% endif %} {% endfor %}
{% if comment.replies|length > 0 %} {% endif %}
{% endfor %}
User Engagement
Bot Score Distribution
{% endblock %} {% block extra_js %} {% endblock %}