gremmie@1: {% extends 'base.html' %}
gremmie@1: {% block title %}IRC Channel Status{% endblock %}
gremmie@1: {% block content %}
gremmie@1: <h2>Who is Chatting in IRC?</h2>
gremmie@1: {% if nicks %}
gremmie@1: <ul>
gremmie@1:    {% for nick in nicks %}
gremmie@1:       <li>{{ nick.name }}</li>
gremmie@1:    {% endfor %}
gremmie@1: </ul>
gremmie@1: <p>Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p>
gremmie@1: {% else %}
gremmie@1: <p><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty at this time.</p>
gremmie@1: {% endif %}
gremmie@1: {% endblock %}