comparison gpp/templates/irc/irc_block.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 81e2449a5932
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'side_block.html' %}
2 {% block block_title %}IRC Status{% endblock %}
3 {% block block_content %}
4 {% if nicks %}
5 <ul>
6 {% for nick in nicks %}
7 <li>{{ nick.name }}</li>
8 {% endfor %}
9 </ul>
10 <p>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p>
11 {% else %}
12 <p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty.</p>
13 {% endif %}
14 {% endblock %}