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

Social Media Monitoring

Track social media mentions and sentiment

{% trans "Total Mentions" %}

{{ stats.total }}

{% trans "Positive" %}

{{ stats.positive }}

{% trans "Neutral" %}

{{ stats.neutral }}

{% trans "Negative" %}

{{ stats.negative }}

{% for mention in mentions %}
{{ mention.get_platform_display }} {% if mention.sentiment == 'positive' %} Positive {% elif mention.sentiment == 'negative' %} Negative {% else %} Neutral {% endif %}
{{ mention.posted_at|date:"M d, Y" }}

@{{ mention.author_username }}

{{ mention.content|truncatewords:30 }}

{{ mention.likes_count }} {{ mention.shares_count }} {{ mention.comments_count }}
View
{% empty %}

No mentions found

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