summaryrefslogtreecommitdiffstats
path: root/templates/svxfile.html
blob: 1fc4e1b6abd876bf3c303225c76fe11fb87581c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}
{% load survex_markup %}

{% block title %}{{ title }}{% endblock %}
{% block content %}
  <H1>{{ title }}</H1>

  <div><a href="{{ settings.SVX_URL }}{{ title }}.svx">Download svx file</a></div>
  {% if has_3d %}
    <div><a href="{{ settings.SVX_URL }}{{ title }}.3d">Download 3d file</a></div>
    <div><a href="{{ settings.SVX_URL }}{{ title }}.err">Download err file</a></div>
  {% else %}
    <div>Processing failed</div>
  {% endif %}
  <div><a href="{{ settings.SVX_URL }}{{ title }}.log">Download log file</a></div>
  
  {{ text|survex_to_html }}

{% endblock %}