2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
{% load wiki_markup %}
{% block title %}Cambridge Expeditions to Austria{% endblock %}
{% block related %}
< h2 > Recent Actions< / h2 >
{% load log %}
{% get_admin_log 10 as admin_log %}
{% 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 %}
2019-03-30 13:58:38 +00:00
< a href = "admin/{{ entry.get_admin_url }}/" > {{ entry.object_repr }}< / a >
2011-07-11 02:10:22 +01:00
{% 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 %}
< div id = "col1" >
< h3 > Welcome< / h3 >
< p class = "indent" >
2020-05-15 21:32:55 +01:00
This is Troggle, the online system for Cambridge University Caving Club's Expeditions to Austria.
2011-07-11 02:10:22 +01:00
< / p >
< p class = "indent" >
2019-02-24 13:03:34 +00:00
Here you will find information about the {{expedition.objects.count}} expeditions the club has undertaken since 1976. Browse survey information, photos, and description wikis for {{Cave.objects.count}} caves, {{subcave.objects.count}} areas within those caves, and {{extantqms.count}} going leads yet to be explored. We have {{Photo.objects.count}} photos and {{Logbookentry.objects.count}} logbook entries.
2011-07-11 02:10:22 +01:00
< / p >
< p class = "indent" >
2020-05-15 21:32:55 +01:00
If you are an expedition member, please sign up using the link to the top right.
2011-07-11 02:10:22 +01:00
< / p >
{% 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" >
2009-05-13 06:22:07 +01:00
{% endblock margins %}