{% extends "admin/base_site.html" %} {% load i18n admin_list admin_static %} {% load url from future %} {% load admin_urls %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{livechat.title}}


{{livechat.expert}}


{{livechat.description|safe|linebreaks}}


{{livechat.chat_starts_at}}


{{livechat.maximum_questions}}


{% for comment in comments.object_list %}

Respond to: {{ comment.user.username }}

{{comment.comment}}

{{comment.submit_date}}

{% include "admin/livechat/livechat/participate_responses.html" %}
{% csrf_token %}
{% empty %}
No questions to display.
{% endfor %}

{% if comments.has_previous %} previous page {% endif %} Page {{ comments.number }} of {{ comments.paginator.num_pages }} {% if comments.has_next %} next page {% endif %}
Total questions: {{comments.object_list.count}}

{% endblock %}