view gpp/templates/shoutbox/shoutbox.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 (2011-02-05)
parents 88b2b9cb8c1f
children
line wrap: on
line source
{% extends 'side_block.html' %}
{% load url from future %}
{% load core_tags %}
{% block block_title %}Shoutbox{% endblock %}
{% block block_content %}
<div id="shoutbox-shout-container">
   {% for shout in shouts reversed %}
      <p>
      <span class="shoutbox-user">{{ shout.user.username }}:</span>
      <span class="shoutbox-shout">{{ shout.html|safe }}</span><br />
      <span class="shoutbox-date">{{ shout.shout_date|elapsed }}</span>
      </p>
   {% endfor %}
</div>
<center>
   <button type="button" id="shoutbox-prev" title="Previous">&laquo;</button>
   <a href="{% url 'shoutbox-history' %}">Shout History</a>
   <button type="button" id="shoutbox-next" title="Next">&raquo;</button>
</center>
{% if user.is_authenticated %}
<center>
<div>
   <input type="text" maxlength="2048" size="13" name="msg" value="" id="shoutbox-smiley-input" />
   <br />
   <input id="shoutbox-submit" type="submit" value="Shout" />
   <input id="shoutbox-smilies" type="button" value="Smilies" />
</div>
<div id="shoutbox-smiley-frame" style="display:none;">
<img id="shoutbox-busy-icon" src="{{ STATIC_URL }}icons/ajax_busy.gif" alt="Please wait" />
</div>
</center>
{% else %}
<p>
Please <a href="{% url 'accounts-login' %}">login</a> or
<a href="{% url 'accounts-register' %}">register</a> to shout.
</p>
{% endif %}
{% endblock %}