{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% load star_rating %} {% load social_icons %} {% block title %}{{ platform_display }} - {% trans "Social Media Monitoring" %} - PX360{% endblock %} {% block content %}
{% social_icon platform %}

{{ platform_display }}

{% trans "Monitor and analyze" %} {{ platform_display }} {% trans "comments" %}

{% trans "View Analytics" %} {% trans "All Platforms" %}
{% trans "Total" %}

{{ stats.total }}

{% trans "Positive" %}

{{ stats.positive }}

{% trans "Neutral" %}

{{ stats.neutral }}

{% trans "Negative" %}

{{ stats.negative }}

{% trans "Avg Sentiment" %}

{{ stats.avg_sentiment|floatformat:2 }}

{% trans "Engagement" %}

{{ stats.total_likes|add:stats.total_replies }}

{% for comment in comments %}
{{ comment.get_platform_display }} {% if comment.rating %} {{ comment.rating|star_rating }} {{ comment.rating }}/5 {% endif %} {% if comment.ai_analysis %} {% with sentiment=comment.ai_analysis.sentiment.classification.en %} {% if sentiment == 'positive' %} Positive {% elif sentiment == 'negative' %} Negative {% else %} Neutral {% endif %} {% endwith %} {% else %} Not Analyzed {% endif %}
{% if comment.published_at %} {{ comment.published_at|date:"M d, Y H:i" }} {% else %} {{ comment.scraped_at|date:"M d, Y H:i" }} {% endif %}
{% if comment.author %}

@{{ comment.author }}

{% endif %}

{{ comment.comments|truncatewords:30 }}

{% if comment.ai_analysis and comment.ai_analysis.keywords.en %}
{% for keyword in comment.ai_analysis.keywords.en|slice:":5" %} {{ keyword }} {% endfor %}
{% endif %}
{{ comment.like_count }} {{ comment.reply_count }}
{% trans "View Details" %}
{% empty %}

{% trans "No comments found for this platform" %}

{% endfor %}
{% if page_obj.has_other_pages %} {% endif %}
{% block extra_css %} {% endblock %} {% endblock %}