Mercurial > public > sg101
annotate gpp/templates/irc/irc_block.html @ 102:e67c4dd98db5
Forums: new topic form sprouts boolean fields for sticky and locking if the user has rights. Implemented the locked logic. Fixed a bug where topics where getting out of order (the view_count was bumping the update_date because of auto_now).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 16 Sep 2009 02:01:57 +0000 |
parents | 81e2449a5932 |
children | 3cf18e6002dd |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'side_block.html' %} |
gremmie@1 | 2 {% block block_title %}IRC Status{% endblock %} |
gremmie@1 | 3 {% block block_content %} |
gremmie@1 | 4 {% if nicks %} |
gremmie@1 | 5 <ul> |
gremmie@1 | 6 {% for nick in nicks %} |
gremmie@1 | 7 <li>{{ nick.name }}</li> |
gremmie@1 | 8 {% endfor %} |
gremmie@1 | 9 </ul> |
gremmie@1 | 10 <p>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p> |
gremmie@1 | 11 {% else %} |
bgneal@25 | 12 <center> |
gremmie@1 | 13 <p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty.</p> |
bgneal@25 | 14 </center> |
gremmie@1 | 15 {% endif %} |
gremmie@1 | 16 {% endblock %} |