mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 23:01:52 +00:00
101 lines
3.6 KiB
HTML
101 lines
3.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load link %}
|
|
|
|
{% block title %}Cambridge Expeditions to Austria{% endblock %}
|
|
|
|
{% block related %}
|
|
<!--
|
|
<h2>Recent Actions - expoadmin</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 %}
|
|
<style>
|
|
ul {list-style: disc}
|
|
</style>
|
|
<h2>You are now logged in</h2>
|
|
<p>Now you can:
|
|
<ul>
|
|
<li>Use 'Edit This Page' to fix errors in the online handbook webpages
|
|
<li>Edit the data on an existing cave description
|
|
<li>Create a new cave description for a new cave, including all cave discovery data
|
|
<li>Edit the data on an existing entrance description
|
|
<li>Create a new cave description for a new cave, including all entrance discovery data
|
|
<li>Edit any archived survex file online
|
|
<li>Upload or type in new survex data for a new trip (see below)
|
|
</ul>
|
|
|
|
<p>See the logged-in status indicator in the top-right of the page, in gray in the banner picture.
|
|
<!--<h2>Expo member tasks</h2>-->
|
|
|
|
<h3></h3>
|
|
|
|
|
|
<h3>Unfinished wallets work to do:</h3>
|
|
<ul>
|
|
<li><a href="/wallets/year/2016">2016 wallets</a><br>
|
|
<li><a href="/wallets/year/2017">2017 wallets</a><br>
|
|
<li><a href="/wallets/year/2018">2018 wallets</a><br>
|
|
<li><a href="/wallets/year/2019">2019 wallets</a><br>
|
|
</ul>
|
|
|
|
<h3>Upload new data</h3>
|
|
<ul>
|
|
<li><a style="color:grey"href="/dwgupload/">Upload a Tunnel or Therion drawing</a></li>
|
|
<li><a style="color:grey"href="/walletedit/2022:00">Upload a scan into a survey wallet</a></li>
|
|
|
|
<li><a href="/survexfile/caves-1623/999/999.svx">Upload or type in a Survex file</a> - rewrite the area/number data in the browser title bar,
|
|
from 'caves-1623/999/999.svx' to the new number
|
|
<li><a href="/cave/1623-6/edit/">Register a new cave</a> or edit an old one
|
|
<li><a href="/entrance/new/1623-6">Register a new entrance to an existing cave</a>
|
|
</ul>
|
|
<p><font style="color:grey">Yes, easy forms for uploading photos and GPX files are being developed, but are not ready for this coming expo:</font>
|
|
<ul>
|
|
<li><a style="color:grey"href="/handbook/computing/uploading.html"><font style="color:grey">Upload a photo</font></a></li>
|
|
<li><a style="color:grey" href="/handbook/computing/gpxupload.html"><font style="color:grey">Upload a GPS track</font></a></li>
|
|
</ul>
|
|
<p>
|
|
<!-- 2006-era early troggle stuff, never implemented?
|
|
<h3>Unfinished surveys</h3>
|
|
{% for survey in surveys_unfinished %}
|
|
<li>{{survey|link}}</li>
|
|
{% empty %}
|
|
[none found in database[surveys_unfinished]]
|
|
{% endfor %}
|
|
|
|
<h3>Caving QM recommendations</h3>
|
|
{% for qm in qms_recommended %}
|
|
<li>{{qm|link}}</li>
|
|
{% empty %}
|
|
[none found in database[qms_recommended]]
|
|
{% endfor %}
|
|
-->
|
|
{% endblock content %}
|
|
|
|
{% block margins %}
|
|
{% endblock margins %}
|