summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 2dad17b5212d50acc3fa08f8f82ba5a970213a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{% extends "base.html" %}
{% load wiki_markup %}

{% block title %}Cambridge Expeditions to Austria{% endblock %}

{% block content %}

<h2>The unfinished front page</h2>
<b>Work down through an expedition page link</b>
<p class="indent"><b>Remaining work:</b> 

<p>(separate out the recent/notable people) vast front-page layout table of folks and caving trips and years; </p>
<p>parse 1995-1976 logbooks; </p>
<p>name matching and spelling in survex files; </p>
<p>detect T/U on log entries; </p>
<p>Improve logbook wikihtml text</p>
<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>
<p>tables of trips per year per person;</p> 

<h3>{{message}}</h3>

<ul>
    <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="/statistics">Statistics of what's loaded in the database</a></li>
    <li><a href="{% url survexindex all %}">Survex directory</a></li>
    <li><a href="{% url survey %}">Survey files</a></li>
</ul>

<form action="" method="GET">
  <input type="submit" name="reloadexpos" value="Reload Expos">
  <input type="submit" name="reloadsurvex" value="Reload Survex">
</form>

<ul id="expeditionlist">
{% for expedition in expeditions %}
<li>
  <a href="{% url expedition expedition.year %}">{{expedition.name}}</a>
</li>
{% endfor %}
</ul>

{% endblock %}