summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/views_caves.py3
-rw-r--r--templates/millenialcaves.html29
2 files changed, 4 insertions, 28 deletions
diff --git a/core/views_caves.py b/core/views_caves.py
index 700779d..3b9360c 100644
--- a/core/views_caves.py
+++ b/core/views_caves.py
@@ -17,6 +17,7 @@ import re, urlparse
from django.shortcuts import get_object_or_404
import settings
+
from PIL import Image, ImageDraw, ImageFont
import string, os, sys, subprocess
@@ -61,7 +62,7 @@ def caveindex(request):
def millenialcaves(request):
#RW messing around area
- caves = Cave.objects.all()
+
return HttpResponse("It's Rad breaking things")
diff --git a/templates/millenialcaves.html b/templates/millenialcaves.html
index ac7da84..bbf54e1 100644
--- a/templates/millenialcaves.html
+++ b/templates/millenialcaves.html
@@ -5,38 +5,13 @@
{% block content %}
-<h1>Cave Index</h1>
-
123 testing 123 testing
-<h3>Notable caves</h3>
-<ul>
+{{ somenonsense }}
+
{% for cave in notablecaves %}
<li> Also update <a href="{{ cave.fixedfield }}">wrap {{ cave.fixedfield }}wrap </a> </li>
{% endfor %}
-</ul>
-
-<h3>1623</h3>
-
-<table class="searchable">
-{% for cave in caves1623 %}
-
- <tr><td> <a href="{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }}{% else %}{{cave.unofficial_number }}{%endif %} {{cave.official_name|safe}}</a> </td></tr>
-
-{% endfor %}
-</table>
-
-<h3>1626</h3>
-
-<ul class="searchable">
-{% for cave in caves1626 %}
-
- <li> <a href="{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }}{% else %}{{cave.unofficial_number }}{%endif %} {{cave.official_name|safe}}</a> </li>
-
-{% endfor %}
-</ul>
-
-<a href="{% url "newcave" %}">New Cave</a>
{% endblock %}