Mercurial > public > sg101
comparison gpp/templates/irc/view.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | 54cbdef18cf4 |
comparison
equal
deleted
inserted
replaced
0:900ba3c7b765 | 1:dbd703f7d63a |
---|---|
1 {% extends 'base.html' %} | |
2 {% block title %}IRC Channel Status{% endblock %} | |
3 {% block content %} | |
4 <h2>Who is Chatting in IRC?</h2> | |
5 {% if nicks %} | |
6 <ul> | |
7 {% for nick in nicks %} | |
8 <li>{{ nick.name }}</li> | |
9 {% endfor %} | |
10 </ul> | |
11 <p>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p> | |
12 {% else %} | |
13 <p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty at this time.</p> | |
14 {% endif %} | |
15 {% endblock %} |