{% 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" %}

{% trans "Analytics" %} CSV Excel
{% for platform_code, platform_name in platforms %} {% 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" %}
{% for comment in comments %}
{% empty %}

{% trans "No comments found" %}

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