Mercurial > public > sg101
view gpp/templates/irc/irc_block.html @ 532:ff67946fd4b0
For #242, move the updating of the POTD sequence into a new signals module.
When photos are deleted from the admin changelist in bulk, the individual
delete() functions on the photo objects is not called. However, the post_delete
signal is called for each object.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 25 Dec 2011 04:15:32 +0000 |
parents | 54cbdef18cf4 |
children |
line wrap: on
line source
{% extends 'side_block.html' %} {% block block_title %}IRC Status{% endblock %} {% block block_content %} {% if nicks %} <ul> {% for nick in nicks %} <li>{{ nick.name }}</li> {% endfor %} </ul> <p class="centered">Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p> {% else %} <p class="centered"><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty.</p> {% endif %} <p class="centered"><a href="/irc/">Need help getting started?</a></p> {% endblock %}