{% extends 'base.html' %} {% block title %}Conversation: {{ thread.subject }} | {{ settings.site_name }}{% endblock %} {% block content %}
{{ thread.subject }}
Started on {{ thread.created_at.strftime('%B %d, %Y') }}
{% if thread.is_closed %} Closed {% else %} Open {% endif %}
{% for message in messages %}
{% if message.is_from_user %} {% else %} {% endif %}
{{ message.message }}
{% if message.is_from_user %} {{ thread.name }} {% else %} {{ settings.site_name if settings else 'ScholarPress' }} Team {% endif %} • {{ message.created_at.strftime('%b %d, %Y at %I:%M %p') }}
{% endfor %}
{% if not thread.is_closed %}
Send a Reply
{% else %}
This conversation has been closed and is no longer accepting replies. If you need further assistance, please start a new conversation.
{% endif %}
Keep This Link Safe

This is your unique link to access this conversation. Bookmark it or keep the email we sent you for future reference.

{% endblock %}