view gpp/templates/messages/outbox_tab.html @ 505:a5d11471d031

Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author Brian Neal <bgneal@gmail.com>
date Sat, 03 Dec 2011 19:13:38 +0000
parents 76ba9478ebbd
children 7cec8d6f9581
line wrap: on
line source
{% load url from future %}
{% if messages %}
<ul class="user-messages">
   {% for msg in messages %}
      <li{% if msg.tags %} class="{{ msg.tags }}"{% endif %}>{{ msg }}</li>
   {% endfor %}
</ul>
{% endif %}
{% if msgs.object_list %}
   <form action="." onsubmit="return bulkMsgAction(this, 'delete');">
   <table class="messages"> 
   <tr>
      <th>To</th>
      <th>Subject</th>
      <th>Sent</th>
      <th>Received</th>
      <th><input type="checkbox" onclick="tabMasterCheckClick(this, 'outbox_ids');" /></th>
   </tr>
   {% for msg in msgs.object_list %}
   <tr>
      <td><a href="{% url 'bio.views.view_profile' msg.receiver.username %}">
         {{ msg.receiver.username }}</a></td>
      <td>
         <a href="#" onclick="msgShow(this, {{ msg.id }}); return false;"
            class="{% if msg.unread %}unread {% endif %}{% if msg.replied_to %}replied_to{% endif %}">{{ msg.subject }}</a>
         </td>
      <td>{{ msg.send_date|date:"M j, Y g:i A" }}</td>
      <td>{% if msg.unread %}<em>Unread</em>{% else %}{{ msg.read_date|date:"M j, Y g:i A" }}{% endif %}</td>
      <td><input type="checkbox" name="outbox_ids" value="{{ msg.id }}" /></td>
   </tr>
   {% endfor %}
   <tr><td colspan="5"><input type="submit" value="Delete Checked Messages" /></td></tr>
   </table>
   </form>
   {% include "messages/pagination.html" %}
   <ul>
      <li>Messages in <strong>bold</strong> are unread.</li>
      <li>Messages in <em>italics</em> have been replied to.</li>
   </ul>
{% else %}
   <p><em>Your Outbox is empty.</em></p>
{% endif %}