{% extends 'agent/base_agent.html' %} {% block title %}Facebook Comments | ChatLab{% endblock %} {% block agent_fb_comments_active %}active{% endblock %} {% block workspace %}
{% 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.is_handled %} Replied {% else %} Pending Reply {% endif %}
{{ comment.message|linebreaksbr }}
{% if not comment.is_handled %}
{% csrf_token %}
{% endif %}
{% empty %}

No Comments Yet

When visitors comment on your Facebook posts, they will appear here.

{% endfor %}
{% endblock %}