view gpp/templates/messages/view.html @ 318:c550933ff5b6

Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Feb 2011 21:46:52 +0000
parents daa2916f5b34
children 26956137b890
line wrap: on
line source
{% extends 'messages/base.html' %}
{% load url from future %}
{% block title %}Messages: {{ msg.subject }}{% endblock %}
{% block messages_content %}
<h3>Viewing Message: {{ msg.subject }}</h3>
<table class="message-header">
   <tr><th>Subject:</th><td>{{ msg.subject }}</td></tr>
   <tr><th>From:</th><td>{{ msg.sender }}</td></tr>
   <tr><th>To:</th><td>{{ msg.receiver }}</td></tr>
   <tr><th>Date Sent:</th><td>{{ msg.send_date|date:"F d, Y g:i:s A T" }}</td></tr>
   <tr><th>Date Received:</th>
      <td>{% if msg.unread %}<em>Unread</em>{% else %}{{ msg.read_date|date:"F d, Y g:i:s A T" }}{% endif %}</td></tr>
</table>

<div class="message-body">
   {{ msg.html|safe }}
</div>
{% if msg.signature_attached %}
<div class="message-hr"></div>
<div class="message-signature">
   {{ msg.sender.get_profile.signature_html|safe }}
</div>
{% endif %}
{% if is_deleted %}
<form action="{% url 'messages-undelete' msg.id %}" method="post">{% csrf_token %}
   {% if box %}<input type="hidden" name="box" value="{{ box }}" />{% endif %}
   <input type="submit" value="Undelete" />
</form>
{% else %}
<a href="{% url 'messages-reply' msg.id %}{% if box %}?box={{ box }}{% endif %}">Reply</a> |
<form action="{% url 'messages-delete' msg.id %}" method="post" class="messages-button">{% csrf_token %}
   {% if box %}<input type="hidden" name="box" value="{{ box }}" />{% endif %}
   <input type="submit" value="Delete" />
</form>
{% endif %}
{% endblock %}