{% extends "base.html" %} {% load jmbo_inclusion_tags jmbo_template_tags %} {% load comments likes_inclusion_tags moderator_inclusion_tags %} {% load livechat_tags mama_inclusion_tags %} {% block content %}
LIVE CHAT ARCHIVE
{% if livechats %} {% for livechat in livechats.object_list %} {% for comment in livechat.comment_set %} {% if comment.livechatresponse_set.exists %}
{{ comment.name }} asked at {{ comment.submit_date.time }}
{{ comment.comment|linebreaks }}
{% for response in comment.livechatresponse_set.all %}
{{ response.author.first_name }} {{ response.author.last_name }} replied to {{ comment.name }} at {{ response.updated_at.time }}
{{ response.response }}
{% endfor %}
{% endif %} {% endfor %}
{% endfor %} {% else %}
No questions yet. Go ahead and ask a question.
{% endif %}
{% endblock %}