mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
a1f02e575f
Add a Docker compose file to bring up a dev troggle easily Various PEP improvments
14 lines
330 B
HTML
14 lines
330 B
HTML
{% 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 %} |