diff options
Diffstat (limited to 'templates/core')
-rw-r--r-- | templates/core/expedition_list.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/core/expedition_list.html b/templates/core/expedition_list.html new file mode 100644 index 0000000..15baa6b --- /dev/null +++ b/templates/core/expedition_list.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% load link %} + +{% block content %} +<h1>Expeditions</h1> +<ul> +{% for expedition in object_list %} + <li>{{ expedition.year }} - <a href="{{ expedition.get_absolute_url }}">{{ expedition.name }}</a></li> +{% empty %} + <li>No articles yet.</li> +{% endfor %} +</ul> +{% endblock %}
\ No newline at end of file |