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 %}
2021-03-27 18:22:07 +00:00
{% block related %}
2021-04-07 16:04:27 +01:00
<!--
< h2 > Recent Actions - expoadmin< / h5 >
2021-03-27 18:22:07 +00:00
{% 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 %}
2021-04-07 16:04:27 +01:00
-->
{% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
2021-04-07 16:04:27 +01:00
< 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 >
2011-07-11 02:10:22 +01:00
2021-04-07 16:04:27 +01:00
< p > See the logged-in status indicator in the top-right of the page, in gray in the banner picture.
2020-07-02 16:24:39 +01:00
<!-- <h2>Expo member tasks</h2> -->
2021-04-07 16:04:27 +01:00
< h3 > < / h3 >
2011-07-11 02:10:22 +01:00
2020-06-04 23:00:58 +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 >
2021-04-07 16:04:27 +01:00
< h3 > Upload new data< / h3 >
< ul >
< li > < a style = "color:grey" href = "" > < font style = "color:grey" > Upload a photo< / font > < / a > < / li >
< li > < a style = "color:grey" href = "" > Upload a GPS track< / a > < / li >
< li > < a style = "color:grey" 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 > - overwrite the area/number data in the browser title bar after the page loads, from 'caves-1623/999/999.svx' to whatever you need for your cave.
< / ul >
< p >
< h3 > Unfinished surveys< / h3 >
2011-07-11 02:10:22 +01:00
{% for survey in surveys_unfinished %}
< li > {{survey|link}}< / li >
2021-04-07 16:04:27 +01:00
{% empty %}
[none found in database[surveys_unfinished]]
2011-07-11 02:10:22 +01:00
{% 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 >
2021-04-07 16:04:27 +01:00
{% empty %}
[none found in database[qms_recommended]]
2011-07-11 02:10:22 +01:00
{% endfor %}
{% endblock content %}
{% block margins %}
{% endblock margins %}