diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-03-26 21:19:31 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-03-26 21:19:31 +0000 |
commit | dba0fd8b2008dcb5de24aeb8348fd9a0946b8255 (patch) | |
tree | c7ba07e3e856dfba7d3c8c77514bdbd54f4726fe /templates/survexblock.html | |
parent | ec83c1ff122b7a1d933225335ef962b9c9b8612c (diff) | |
download | troggle-dba0fd8b2008dcb5de24aeb8348fd9a0946b8255.tar.gz troggle-dba0fd8b2008dcb5de24aeb8348fd9a0946b8255.tar.bz2 troggle-dba0fd8b2008dcb5de24aeb8348fd9a0946b8255.zip |
remove survexblock webpage - redundant
Diffstat (limited to 'templates/survexblock.html')
-rw-r--r-- | templates/survexblock.html | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/templates/survexblock.html b/templates/survexblock.html deleted file mode 100644 index b159956..0000000 --- a/templates/survexblock.html +++ /dev/null @@ -1,49 +0,0 @@ -{% extends "base.html" %} -{% load wiki_markup %} -{% load survex_markup %} - - -{% block title %}Survex Block{% endblock %} - -{% block content %} -<h2>Survex Block {{survexblock.survexpath}}</h2> - -<p>Link to <a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock.survexfile.path}}</a></p> - -<p>Needs duplicates removed from right hand column</p> -<p>Needs links to survex file presentation</p> -<p>Needs to start dealing with misspellings of names (prob by editing the originals)</p> - -<div id="col2"> - -{% if survexblock.parent %} - <p>Survey block above:</p> - <p class="indent"><a href="{% url "survexblock" survexblock.parent.survexpath %}">{{survexblock.parent.survexpath}}</a></p> -{% endif %} - -{% if survexblock.survexblock_set.all %} - <p>Survey blocks below:</p> - {% for survexblockdown in survexblock.survexblock_set.all %} - <p class="indent"><a href="{% url "survexblock" survexblockdown.survexpath %}">{{survexblockdown.survexpath}}</a></p> - {% endfor %} -{% endif %} - -<p>Date: {{survexblock.date}}</p> - -<table> -{% for personrole in survexblock.GetPersonroles %} -<tr> - <td><a href="{{personrole.person.get_absolute_url}}">{{personrole.person}}</a></td> - <td>{{personrole.roles}}</td> -</tr> -{% endfor %} -</table> - - -</div> - -<div class="survexblock"> - {{ftext|survex_to_html}} -</div> - -{% endblock %} |