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

{% trans "Social Media Monitoring" %}

{% trans "Track social media mentions and sentiment across all platforms" %}

{% for platform_code, platform_name in platforms %}
{% social_icon platform_code %}
{{ platform_name }}

{{ stats|lookup:platform_code }} {% trans "comments" %}

{% endfor %}

{% trans "Total Comments" %}

{{ stats.total }}

{% trans "Positive" %}

{{ stats.positive }}

{% widthratio stats.positive stats.total 100 %}% {% trans "of total" %}

{% trans "Neutral" %}

{{ stats.neutral }}

{% widthratio stats.neutral stats.total 100 %}% {% trans "of total" %}

{% trans "Negative" %}

{{ stats.negative }}

{% widthratio stats.negative stats.total 100 %}% {% trans "of total" %}

{% trans "Advanced Filters" %}

{% for comment in comments %}
{{ comment.get_platform_display }} {% if comment.rating %} {{ comment.rating }}/5 {% endif %} {% if comment.ai_analysis %} {% with sentiment=comment.ai_analysis.sentiment.classification.en %} {% if sentiment == 'positive' %} {% trans "Positive" %} {% elif sentiment == 'negative' %} {% trans "Negative" %} {% else %} {% trans "Neutral" %} {% endif %} {% endwith %} {% else %} {% trans "Not Analyzed" %} {% endif %}
{% if comment.author %}

@{{ comment.author }}

{% endif %}

{{ comment.comments|truncatewords:30 }}

{{ comment.like_count }}
{{ comment.reply_count }}

{% if comment.published_at %} {{ comment.published_at|date:"M d, Y H:i" }} {% else %} {{ comment.scraped_at|date:"M d, Y H:i" }} {% endif %}

{% empty %}

{% trans "No comments found" %}

{% endfor %}
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} {% endif %} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} {% endif %}
{% endif %}
{% endblock %}