2009-05-13 05:32:19 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
|
|
|
|
{% block title %}Cambridge Expeditions to Austria{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2009-05-13 05:33:29 +01:00
|
|
|
<h2>The unfinished front page</h2>
|
2009-05-13 05:39:52 +01:00
|
|
|
<b>Work down through an expedition page link</b>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p class="indent"><b>Remaining work:</b>
|
|
|
|
|
2009-05-13 05:46:12 +01:00
|
|
|
<p>(separate out the recent/notable people) vast front-page layout table of folks and caving trips and years; </p>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p>parse 1995-1976 logbooks; </p>
|
2009-05-13 05:46:12 +01:00
|
|
|
<p>name matching and spelling in survex files; </p>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p>detect T/U on log entries; </p>
|
2009-05-13 05:46:12 +01:00
|
|
|
<p>Improve logbook wikihtml text</p>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p>match caves to log entries; </p>
|
|
|
|
<p>simplify the survex parsing code (if necessary); </p>
|
|
|
|
<p>links between logbooks and survex blocks to cave things; </p>
|
|
|
|
<p>where are the subcaves; </p>
|
|
|
|
<p>mini-tree of survexblocks; </p>
|
|
|
|
<p>connect sketches to caves to survey blocks and render thumbnailwise; </p>
|
|
|
|
<p>all images to start appearing in pages; and so on</p>
|
2009-05-13 05:46:12 +01:00
|
|
|
<p>tables of trips per year per person;</p>
|
2009-05-13 05:33:29 +01:00
|
|
|
|
2009-05-13 05:35:59 +01:00
|
|
|
<h3>{{message}}</h3>
|
|
|
|
|
2009-05-13 05:33:29 +01:00
|
|
|
<ul>
|
2009-05-13 05:46:12 +01:00
|
|
|
<li><b><a href="{% url personindex %}">List of People</a></b></li>
|
|
|
|
<li><b><a href="{% url caveindex %}">List of Caves</a></b></li>
|
2009-05-13 05:33:29 +01:00
|
|
|
<li><a href="/statistics">Statistics of what's loaded in the database</a></li>
|
2009-05-13 05:45:01 +01:00
|
|
|
<li><a href="{% url survexindex all %}">Survex directory</a></li>
|
2009-05-13 05:44:01 +01:00
|
|
|
<li><a href="{% url survey %}">Survey files</a></li>
|
2009-05-13 05:33:29 +01:00
|
|
|
</ul>
|
2009-05-13 05:32:19 +01:00
|
|
|
|
2009-05-13 05:39:52 +01:00
|
|
|
<form action="" method="GET">
|
|
|
|
<input type="submit" name="reloadexpos" value="Reload Expos">
|
|
|
|
<input type="submit" name="reloadsurvex" value="Reload Survex">
|
|
|
|
</form>
|
2009-05-13 05:35:59 +01:00
|
|
|
|
|
|
|
<ul id="expeditionlist">
|
2009-05-13 05:46:12 +01:00
|
|
|
{% for expedition in expeditions %}
|
|
|
|
<li>
|
|
|
|
<a href="{% url expedition expedition.year %}">{{expedition.name}}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2009-05-13 05:35:59 +01:00
|
|
|
</ul>
|
|
|
|
|
2009-05-13 05:32:19 +01:00
|
|
|
{% endblock %}
|