view gpp/templates/irc/irc_block.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents dbd703f7d63a
children 81e2449a5932
line wrap: on
line source
{% 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 %}