2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
troggle/templates/tasks.html

69 lines
2.4 KiB
HTML
Raw Normal View History

2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
2021-04-02 20:41:42 +01:00
2011-07-11 02:10:22 +01:00
{% load link %}
{% block title %}Cambridge Expeditions to Austria{% endblock %}
{% block related %}
<h2>Recent Actions - admin user</h5>
{% load log %}
{% get_admin_log 10 as admin_log for_user 1 %}
{% if not admin_log %}
<p>No recent actions</p>
{% else %}
<ul class="actionlist">
{% for entry in admin_log %}
<li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}">
{% if entry.is_deletion %}
{{ entry.object_repr }}
{% else %}
<a href="{{ entry.get_admin_url }}/">{{ entry.object_repr }}</a>
{% endif %}
<br/>
{% if entry.content_type %}
<span class="mini quiet">{% filter capfirst %}{{entry.content_type.name}}{% endfilter %}</span>
{% else %}
<span class="mini quiet">Unknown content</span>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
2020-07-02 16:24:39 +01:00
<h2>This is not fully working currently</h2>
<h2>The code behind this page is under repair</h2>
2011-07-11 02:10:22 +01:00
2020-07-02 16:24:39 +01:00
<!--<h2>Expo member tasks</h2>-->
<h3>Expo member tasks</h3>
2011-07-11 02:10:22 +01:00
<h3>Add new data</h3>
<li><a href="">Upload a photo</a></li>
2020-07-02 16:24:39 +01:00
<li><a href="">Upload a GPS track</a></li>
<li><a href="">Upload a Tunnel or Therion drawing</a></li>
<li><a href="/survexfile/caves-1623/999/999.svx">Upload or type in a Survex file</a></li>
2011-07-11 02:10:22 +01:00
<h3>Unfinished wallets work to do:</h3>
2020-07-02 16:24:39 +01:00
<a href="/expofiles/surveyscans/2016/walletindex.html">2016 wallets</a><br>
<a href="/expofiles/surveyscans/2017/walletindex.html">2017 wallets</a><br>
<a href="/expofiles/surveyscans/2018/walletindex.html">2018 wallets</a><br>
<a href="/expofiles/surveyscans/2019/walletindex.html">2019 wallets</a><br>
2011-07-11 02:10:22 +01:00
{% for survey in surveys_unfinished %}
<li>{{survey|link}}</li>
{% endfor %}
2020-07-02 16:24:39 +01:00
<h3>Caving QM recommendations</h3>
2011-07-11 02:10:22 +01:00
{% for qm in qms_recommended %}
<li>{{qm|link}}</li>
{% endfor %}
{% endblock content %}
{% block margins %}
<img class="leftMargin eyeCandy fadeIn" src="{{ settings.MEDIA_URL }}eieshole.jpg">
<img class="rightMargin eyeCandy fadeIn" src="{{ settings.MEDIA_URL }}goesser.jpg">
{% endblock margins %}