mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 23:31:52 +00:00
09a1539aef
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8331 by cucc @ 5/8/2009 8:16 PM
29 lines
630 B
HTML
29 lines
630 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>
|
|
|
|
<form method="get">
|
|
<div>
|
|
<input type="text" value="" name="q" id="q" />
|
|
</div>
|
|
</form>
|
|
|
|
<ul id="posts">
|
|
{% for cave in caves %}
|
|
<li> <a href="{{ cave.get_absolute_url }}">{{cave.official_name|wiki_to_html_short}} ({{cave}})</a> </li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %} |