view gpp/templates/irc/irc_block.html @ 21:884839ddbfde

Webinks: added a navigation template tag so views don't have to keep constructing the searc form. Also provided a count of search results on the template.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 21:00:06 +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 %}