{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Social Mention - PX360{% endblock %} {% block content %}
Back to 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 H:i" }}
@{{ mention.author_username }}

{{ mention.content }}

{{ mention.likes_count }} Likes
{{ mention.shares_count }} Shares
{{ mention.comments_count }} Comments
View Original Post
{% trans "Sentiment Analysis" %}
{% if mention.sentiment_score %}

{{ mention.sentiment_score|floatformat:2 }}

Sentiment Score

{% else %}

Not analyzed yet

{% endif %}
{% if mention.px_action %}
{% trans "PX Action" %}

Action created from this mention

View Action
{% endif %}
{% endblock %}