forked from expo/troggle
32 lines
917 B
HTML
32 lines
917 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
{% load link %}
|
|
|
|
{% block title %}List of survex files{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Cave not found in database</h1>
|
|
|
|
<h3>Cave number looked for: '{{cave}}'</h3>
|
|
<ul>
|
|
<li>- unofficial number like this not found</li>
|
|
<li>- kataster number like this not found</li>
|
|
</ul>
|
|
|
|
<h3>You probably got here because a survex (.svx) file has been stored on the server in the
|
|
<a href="/handbook/computing/repos.html"><var>:loser:</var></a> repository
|
|
but whoever was
|
|
responsible has not yet created the appropriate XML file the
|
|
<a href="/handbook/computing/repos.html"><var>:expoweb:</var></a> repository
|
|
which registers the cave description and ties together
|
|
the survex files with everything else.
|
|
</h3>
|
|
|
|
<p>The process for registering a new cave is documented in
|
|
<a href="/handbook/survey/caveentry.html">this part of the survey handbook</a>.
|
|
<p>
|
|
|
|
{% endblock %}
|
|
|