{% extends 'base.html' %} {% block title %}{{ thread.subject }} | Editor | {{ settings.site_name }}{% endblock %} {% block content %} Dashboard Messages View Thread {{ thread.subject }} {{ 'Closed' if thread.is_closed else 'Open' }} Conversation {% for message in thread.messages %} {% if message.is_staff_reply %} {% else %} {% endif %} {% if message.is_staff_reply %} {{ message.user.name or 'Staff' if message.user else 'Staff' }} Staff {% else %} {{ thread.name }} {% endif %} {{ message.created_at.strftime('%b %d, %Y at %H:%M') }} {{ message.content|nl2br }} {% endfor %} {% if not thread.is_closed %} Reply Close thread after sending Send Reply {% else %} This thread is closed. Reopen it to continue the conversation. {% endif %} Contact Information Name {{ thread.name }} Email {{ thread.email }} Created {{ thread.created_at.strftime('%b %d, %Y') }} Messages {{ thread.messages.count() }} Actions Email Directly {% if thread.is_closed %} Reopen Thread {% else %} Close Thread {% endif %} Back to Messages {% endblock %}