diff options
-rw-r--r-- | templates/survexdir.html | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/templates/survexdir.html b/templates/survexdir.html index ab1a041..aa0ef7d 100644 --- a/templates/survexdir.html +++ b/templates/survexdir.html @@ -1,4 +1,5 @@ <!-- svxcavesingle.html - this text visible because this template has been included --> + {% extends "base.html" %} {% block title %}List of survex directories{% endblock %} {% block content %} @@ -20,13 +21,6 @@ {% endfor %} </table> -<table> -<tr><th>Cave</th><th>Cave url</th></tr> -{% for c in caves %} -<tr> -<td>{{c}}</td> -<td>{{c.url}}</td> -</tr> -{% endfor %} -</table> + + {% endblock %} |