{% extends 'agent/base_agent.html' %} {% block title %}Facebook Comments | ChatLab{% endblock %} {% block agent_fb_comments_active %}active{% endblock %} {% block header_center %} Facebook Comments {% endblock %} {% block workspace %}
{{ comments|length }}
Total Comments
{{ comments|length }}{% with handled=0 %}{% for c in comments %}{% if c.is_handled %}{% with handled=handled|add:1 %}{% endwith %}{% endif %}{% endfor %}{% endwith %}
Replied
{% with pending=0 %}{% for c in comments %}{% if not c.is_handled %}{% with pending=pending|add:1 %}{% endwith %}{% endif %}{% endfor %}{{ pending }}{% endwith %}
Pending
{% for comment in comments %}
{% if comment.profile_pic %} {{ comment.sender_name }} {% else %}
{{ comment.sender_name|slice:":1"|upper|default:"U" }}
{% endif %}

{{ comment.sender_name|default:"Unknown User" }}

{{ comment.created_at|date:"M d, Y h:i A" }}
{% if comment.ai_reply %} 🤖 AI Replied {% endif %} {% if comment.is_handled %} ✓ Replied {% else %} ⏳ Pending {% endif %}
{{ comment.message|linebreaksbr }}
{% if comment.ai_reply %}
AI Auto-Reply{% if comment.replied_at %} · {{ comment.replied_at|date:"M d, h:i A" }}{% endif %}
{{ comment.ai_reply|linebreaksbr }}
{% endif %}
{% if not comment.is_handled %}
{% csrf_token %}
{% else %}
Send another reply
{% csrf_token %}
{% endif %}
{% empty %}

No Comments Yet

When visitors comment on your Facebook Page posts, they will appear here automatically.
Make sure Feed subscription is enabled in your Facebook App Webhooks settings.

{% endfor %}
{% endblock %}