mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
b503d3d588
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
19 lines
615 B
HTML
19 lines
615 B
HTML
{% 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 %} |