Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/irc/irc_block.html Mon Apr 06 02:43:12 2009 +0000 @@ -0,0 +1,14 @@ +{% 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>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p> +{% else %} +<p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty.</p> +{% endif %} +{% endblock %}