{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{{ platform_name }} - {% trans "Comments" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Back to Dashboard" %}

{{ platform_name }} - {% trans "Comments" %}

{% trans "Monitor and analyze social media comments and reviews" %}

{{ page_obj.paginator.count }}
{% trans "Total Comments" %}
{{ page_obj.paginator.count }}
{% trans "Analyzing..." %}
AI
{% trans "Sentiment Analysis" %}
{{ account.name }}
{% trans "Account" %}
{% if search_query or sentiment_filter or sync_filter %} {% trans "Clear" %} {% endif %}
{% for comment in page_obj.object_list %} {% empty %} {% endfor %}
{% trans "Author" %} {% trans "Comment" %} {% trans "Sentiment" %} {% trans "Rating" %} {% trans "Likes" %} {% trans "Date" %}
{{ comment.author_name|first|upper|default:"?" }}
{{ comment.author_name|truncatechars:25 }}

{{ comment.text|truncatewords:25 }}

{% if comment.is_analyzed %} {% with sentiment=comment.ai_analysis.sentiment.classification.en %} {% if sentiment == 'positive' %} {% trans "Positive" %} {% elif sentiment == 'negative' %} {% trans "Negative" %} {% elif sentiment == 'neutral' %} {% trans "Neutral" %} {% else %} - {% endif %} {% endwith %} {% else %} {% trans "Pending" %} {% endif %} {% if comment.rating %} {{ comment.rating }} {% else %} - {% endif %} {% if comment.like_count > 0 %} {{ comment.like_count }} {% else %} - {% endif %} {{ comment.created_at|date:"M d, Y" }}

{% trans "No comments found" %}

{% trans "Try adjusting your filters or sync new comments" %}

{% if page_obj.has_other_pages %}
{% blocktrans with start=page_obj.start_index end=page_obj.end_index total=page_obj.paginator.count %} Showing {{ start }}-{{ end }} of {{ total }} {% endblocktrans %}
{% if page_obj.has_previous %} {% endif %} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}