2021-04-15 12:55:13 +01:00
|
|
|
<!-- svxfile.html - this text visible because this template has been included -->
|
2011-07-11 02:10:22 +01:00
|
|
|
{% extends "base.html" %}
|
2023-03-21 14:29:15 +00:00
|
|
|
{% block title %}{{ survexfile }}{% endblock %}
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
{% block head %}
|
2021-10-25 23:02:27 +01:00
|
|
|
<!-- Should we wait until CodeMirror 6.0 is available https://codemirror.net/6/ -->
|
2021-03-26 17:33:58 +00:00
|
|
|
<!-- <script type="text/javascript" src="{{settings.JSLIB_URL}}jquery-form/jquery.form.min.js"></script> <!-- INVALID-->
|
|
|
|
<!-- <script type="text/javascript" src="{{settings.JSLIB_URL}}codemirror/codemirror.min.js"></script> <!-- INVALID-->
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2021-03-26 17:33:58 +00:00
|
|
|
<!-- Not in use and not needed for simple text editor jquery
|
2011-07-11 02:10:22 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
var codeeditor;
|
|
|
|
$(document).ready(function()
|
|
|
|
{
|
|
|
|
codeeditor = CodeMirror.fromTextArea("id_code",
|
|
|
|
{
|
|
|
|
parserfile: ["parsesurvex.js"],
|
2021-03-21 01:37:52 +00:00
|
|
|
stylesheet: "{{settings.MEDIA_URL}}CodeMirror-0.62/css/survexcolors.css", # INVALID
|
|
|
|
path: "{{settings.MEDIA_URL}}CodeMirror-0.62/js/", # INVALID
|
2011-07-11 02:10:22 +01:00
|
|
|
textWrapping: false,
|
|
|
|
lineNumbers: false,
|
|
|
|
indentUnit: 4,
|
|
|
|
tabMode: "spaces"
|
|
|
|
});
|
|
|
|
$("#id_outputtype").val("ajax");
|
|
|
|
var options =
|
|
|
|
{
|
|
|
|
target: '#difflistajax',
|
|
|
|
beforeSubmit: function() { $("textarea#id_code").value = codeeditor.getCode().length; },
|
|
|
|
success: function() { codeeditor.focus(); }
|
|
|
|
};
|
|
|
|
$('#codewikiform').ajaxForm(options); // bind form using 'ajaxForm'
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
2021-03-26 17:33:58 +00:00
|
|
|
-->
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-04-14 21:08:06 +01:00
|
|
|
{% if warning %}
|
2023-03-21 14:29:15 +00:00
|
|
|
<h1 style="color: red">Survex Template - will save as file '{{ survexfile }}.svx'</h1>
|
2021-04-14 21:08:06 +01:00
|
|
|
{% else %}
|
2023-03-21 14:29:15 +00:00
|
|
|
<h1>Survex File: {{ survexfile }}</h1>
|
2021-04-14 21:08:06 +01:00
|
|
|
{% endif %}
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
{% if svxincludes %}
|
2021-03-26 17:33:58 +00:00
|
|
|
<p><b>Included files:</b>
|
|
|
|
{% for svxinclude in svxincludes %}
|
|
|
|
<a href="{{svxinclude}}.svx">{{svxinclude}}</a>
|
|
|
|
{% endfor %}
|
2011-07-11 02:10:22 +01:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-03-26 21:20:08 +00:00
|
|
|
|
2019-04-14 22:45:31 +01:00
|
|
|
<form id="codewikiform" action="" method="POST">{% csrf_token %}
|
2011-07-11 02:10:22 +01:00
|
|
|
<div class="codeframebit">{{form.code}}</div>
|
|
|
|
<div style="display:none">{{form.filename}} {{form.dirname}} {{form.datetime}} {{form.outputtype}}</div>
|
2020-05-31 20:46:12 +01:00
|
|
|
<input type="submit" name="diff" value="Differences between edited and saved versions of this file" />
|
|
|
|
<input type="submit" name="save" value="Save this edited svx file"/>
|
|
|
|
<input type="submit" name="process" value="Run 'cavern' on this svx file" title="executes cavern"/>
|
2011-07-11 02:10:22 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<div id="difflistajax">
|
|
|
|
<pre>
|
|
|
|
{% for diffline in difflist %}{{diffline}}
|
|
|
|
{% endfor %}
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
{% if logmessage %}
|
2021-03-26 17:33:58 +00:00
|
|
|
{% if has_3d %}
|
2023-03-21 14:29:15 +00:00
|
|
|
<p>Click here to view the <a href='{% url "threed" survexfile %}'>3d file</a> produced as output</p>
|
2021-03-26 17:33:58 +00:00
|
|
|
{% else %}
|
2023-03-21 14:29:15 +00:00
|
|
|
<p><b>No 3d file generated. There was an ERROR<br>Read the full <a href='{% url "svxlog" survexfile %}'>.log file</a>
|
|
|
|
the <a href='{% url "err" survexfile %}'>.err file</a> and fix this .svx file</b></p>
|
2021-03-26 17:33:58 +00:00
|
|
|
{% endif %}
|
2022-03-11 16:22:37 +00:00
|
|
|
<!-- <pre>
|
|
|
|
LOGMESSAGES
|
|
|
|
{{logmessage}}
|
2021-03-26 17:33:58 +00:00
|
|
|
</pre>
|
2022-03-11 16:22:37 +00:00
|
|
|
-->
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2023-03-14 02:12:28 +00:00
|
|
|
underground survey length: {{svxlength|floatformat:2}} metres<br />
|
2023-09-10 14:35:00 +01:00
|
|
|
<a href="/{{survexfile.cave.url}}">cave</a> primary survexfile <a href="/survexfile/{{ survexfile.cave.survex_file }}">{{survexfile.cave.survex_file}}</a> <br>
|
2023-09-06 20:58:14 +01:00
|
|
|
directory primary survexfile <a href="/survexfile/{{survexfile.primary}}.svx">{{survexfile.primary}}</a> <br />
|
2023-02-26 22:13:37 +00:00
|
|
|
{% for sb in svxblocks %}
|
2023-09-07 23:26:01 +01:00
|
|
|
block <em>{{sb}}</em> has parent block <em>{{sb.parent}}</em> (in file {{sb.parent.survexfile.path}}.svx)<br />
|
2023-02-27 19:14:08 +00:00
|
|
|
{% empty %}
|
2023-02-27 22:23:24 +00:00
|
|
|
Cannot find any <em>dated</em> survex blocks in this survex file (not looking at *include files). <br />
|
2023-02-27 19:14:08 +00:00
|
|
|
Report this to a nerd if you think this is incorrect.
|
|
|
|
<hr />
|
|
|
|
{% endfor %}
|
2023-03-14 02:12:28 +00:00
|
|
|
<span style="font-family: monospace; font-size: 130%; ">
|
2023-02-27 19:14:08 +00:00
|
|
|
|
|
|
|
{% for key, value in events.items %}
|
2023-02-28 16:18:13 +00:00
|
|
|
{% with trips=value.0 svxothers=value.1 wallets=value.2 blocks=value.3 %}
|
|
|
|
<details {% if forloop.first %} open{% endif %}>
|
|
|
|
<summary><b><a href="/expedition/{{key|date:"Y"}}">{{key|date:"Y"}}</a>{{key|date:"-m-d"}}</b> {{blocks}}</summary>
|
|
|
|
{% include 'onthisdate.html' %}
|
|
|
|
{% endwith %}
|
|
|
|
</details>
|
2023-02-26 22:13:37 +00:00
|
|
|
{% endfor %}
|
|
|
|
</span>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endblock %}
|