mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
69 lines
2.4 KiB
HTML
69 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% 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 %}
|
|
|
|
{% block content %}
|
|
<h2>This is not fully working currently</h2>
|
|
<h2>The code behind this page is under repair</h2>
|
|
|
|
<!--<h2>Expo member tasks</h2>-->
|
|
|
|
<h3>Expo member tasks</h3>
|
|
<h3>Add new data</h3>
|
|
|
|
<li><a href="">Upload a photo</a></li>
|
|
<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>
|
|
|
|
<h3>Unfinished wallets work to do:</h3>
|
|
<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>
|
|
|
|
{% for survey in surveys_unfinished %}
|
|
<li>{{survey|link}}</li>
|
|
{% endfor %}
|
|
|
|
<h3>Caving QM recommendations</h3>
|
|
{% 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 %}
|