expoweb/troggle/templates/caveindex.html
cucc bc509a19b1 [svn r8334] Improve registration system.
Add jquery fade effects and quick search.
2009-05-10 07:23:55 +02:00

23 lines
533 B
HTML

{% extends "base.html" %}
{% load wiki_markup %}
{% block title %}Cave Index{% endblock %}
{% block content %}
<h3>Notable caves</h3>
<ul>
{% for cave in notablecaves %}
<li> <a href="{{ cave.get_absolute_url }}">{{cave.official_name|wiki_to_html_short}} ({{cave}})</a> </li>
{% endfor %}
</ul>
<h3>All caves</h3>
<ul class="searchable">
{% for cave in caves %}
<li> <a href="{{ cave.get_absolute_url }}">{{cave.official_name|wiki_to_html_short}} ({{cave}})</a> </li>
{% endfor %}
</ul>
{% endblock %}