{% extends 'base.html' %} {% block title %}Conversation: {{ thread.subject }} | {{ settings.site_name }}{% endblock %} {% block content %} Home Contact Conversation {{ 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 Send 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 %}
This is your unique link to access this conversation. Bookmark it or keep the email we sent you for future reference.