{% extends 'layouts/base.html' %} {% load social_filters %} {% load social_icons %} {% load action_icons %} {% load star_rating %} {% block title %}Comments - {{ platform_name }}{% endblock %} {% block page_title %}{{ platform_name }} Comments{% endblock %} {% block page_subtitle %}View and manage comments from {{ account.name }}{% endblock %} {% block content %}
Back to Dashboard
Sync Now
{% if platform_type == 'META' %} {% endif %}
{% if search_query %} Search: {{ search_query|truncatechars:20 }} {% endif %} {% if sentiment_filter %} Sentiment: {{ sentiment_filter|capfirst }} {% endif %} {% if sync_filter %} Sync: {% if sync_filter == 'true' %}Real-time{% else %}Polling{% endif %} {% endif %}
Clear Export CSV
{% if page_obj %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} comments
Use filters to narrow down results
{% endif %} {% if page_obj %}
{% for comment in page_obj %}
{{ comment.author_name|slice:":1"|upper }}
{{ comment.author_name }}

{{ comment.text|truncatewords:20 }}

{% if comment.is_reply %} Reply {% endif %} {% if comment.is_replied %} Replied {% endif %} {% if comment.synced_via_webhook %} Real-time {% endif %} {% if comment.rating %} {{ comment.rating }} {% endif %} {% if comment.ai_analysis and comment.ai_analysis.actionable_insights.requires_followup %} Follow-up {% endif %}
{% if comment.ai_analysis %} {{ comment.ai_analysis.sentiment.classification.en|capfirst }} {% else %} Pending {% endif %} {% if comment.ai_analysis and comment.ai_analysis.business_intelligence.patient_satisfaction_score %} {{ comment.ai_analysis.business_intelligence.patient_satisfaction_score }}% {% endif %}
{% if comment.like_count > 0 %} {{ comment.like_count }} {% endif %} {% if comment.reply_count > 0 %} {{ comment.reply_count }} {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No Comments Found

{% if search_query %} No comments match your search criteria. Try adjusting your filters. {% elif sync_filter %} No comments with selected sync method. {% else %} No comments found for this account. Try syncing to fetch new comments. {% endif %}

Sync Now
{% endif %} {% endblock %}