summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 667fa282525b98d4230a9da790d4162aa1049725 (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
{% extends "base.html" %}
{% load wiki_markup %}

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

{% block content %}

<h2>The unfinished front page</h2>
<p>Some handy links into the less incomplete parts of this webpage</p>

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

<ul>
    <li><a href="{% url personindex %}">List osf people</a></li>
    <li><a href="/statistics">Statistics of what's loaded in the database</a></li>
</ul>

<form action="" method="GET"><input type="submit" name="reload" value="Reload"></form>

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

{% endblock %}