Mercurial > public > sg101
view gpp/templates/irc/view.html @ 259:75ea1a8be7f2
Fix some old import problems where I used 'from django.contrib import auth' instead of 'from django.contrib.auth.models import User'. Also some formatting changes while I was in there.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 21 Sep 2010 23:49:05 +0000 |
parents | dbd703f7d63a |
children | 54cbdef18cf4 |
line wrap: on
line source
{% extends 'base.html' %} {% block title %}IRC Channel Status{% endblock %} {% block content %} <h2>Who is Chatting in IRC?</h2> {% 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 at this time.</p> {% endif %} {% endblock %}