mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-24 00:01:58 +00:00
29 lines
743 B
HTML
29 lines
743 B
HTML
{% 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 %}
|