diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:13:38 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:13:38 +0100 |
commit | b503d3d588474cc41bffc01eca7654bb8c6f4a42 (patch) | |
tree | 782956fc07f18a13ae24fc0c045e970c6ba03f04 /templates/svxfile.html | |
download | troggle-b503d3d588474cc41bffc01eca7654bb8c6f4a42.tar.gz troggle-b503d3d588474cc41bffc01eca7654bb8c6f4a42.tar.bz2 troggle-b503d3d588474cc41bffc01eca7654bb8c6f4a42.zip |
[svn] Initial troggle checkin
This is a development site using Django 1.0
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8034 by julian @ 10/26/2008 9:04 PM
Diffstat (limited to 'templates/svxfile.html')
-rw-r--r-- | templates/svxfile.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/svxfile.html b/templates/svxfile.html new file mode 100644 index 0000000..1fc4e1b --- /dev/null +++ b/templates/svxfile.html @@ -0,0 +1,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 %}
\ No newline at end of file |