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:48:47 +01:00
|
|
|
<ul>
|
2009-05-13 05:58:58 +01:00
|
|
|
<li><b>About {{totallogbookentries}} logbook entries have been loaded</b></li>
|
2009-05-13 05:48:47 +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>
|
|
|
|
<li><a href="{% url jgtfile aaaa %}">JGT list of files</a> (temporary simple file list and tunnel use)</li>
|
|
|
|
<li><a href="{% url survey %}">Survey files</a></li>
|
|
|
|
<li><a href="{% url survexindex all %}">Survex directory</a></li>
|
|
|
|
<li><a href="{% url expedition 2008 %}">Expedition 2008</a></li>
|
|
|
|
<li><a href="{% url expedition 2007 %}">Expedition 2007</a></li>
|
2009-05-13 05:58:58 +01:00
|
|
|
<li><a href="{% url expedition 1993 %}">Expedition 1993</a> (earliest parsed)</li>
|
2009-05-13 05:48:47 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2>Further work</h2>
|
|
|
|
|
2009-05-13 05:58:58 +01:00
|
|
|
<p>Julian's work:
|
|
|
|
<p>parse 1992-1976 logbooks; (esp top 161)</p>
|
|
|
|
<p>detect T/U on log entries; </p>
|
|
|
|
<p>name matching and spelling in survex files; </p>
|
|
|
|
<p>Improve logbook wikihtml text</p>
|
|
|
|
|
|
|
|
<p>Other work:</p>
|
2009-05-13 05:48:47 +01:00
|
|
|
<p>surf through the tunnel sketches and images</p>
|
|
|
|
<p>bugs with all.svx block (double dot)
|
|
|
|
<p>render bitmap view of every survex block as a thumbnail</p>
|
|
|
|
<p>upload tunnel images and tunnel sketches</p>
|
|
|
|
<p>where are the subcaves; </p>
|
|
|
|
<p>cave section entrance match for logbook entries</p>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p>simplify the survex parsing code (if necessary); </p>
|
2009-05-13 05:48:47 +01:00
|
|
|
<p>wiki survex stop linegap between comment lins</p>
|
2009-05-13 05:43:20 +01:00
|
|
|
<p>links between logbooks and survex blocks to cave things; </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:33:29 +01:00
|
|
|
|
2009-05-13 05:35:59 +01:00
|
|
|
<h3>{{message}}</h3>
|
|
|
|
|
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>
|
2009-05-13 05:58:58 +01:00
|
|
|
- <b>{{expedition.logbookentry_set.count}}</b> logbook entries
|
2009-05-13 05:46:12 +01:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2009-05-13 05:35:59 +01:00
|
|
|
</ul>
|
|
|
|
|
2009-05-13 05:32:19 +01:00
|
|
|
{% endblock %}
|