Don't actually need the templates

master
Bradlee Speice 2014-04-01 19:26:17 -04:00
parent 314934a468
commit 950a188e30
3 changed files with 1 additions and 21 deletions

View File

@ -5,5 +5,6 @@ class Location(models.Model):
key = models.CharField(max_length=32)
name = models.CharField(max_length=32)
riddle = models.CharField(max_length=512)
riddle_image_url = models.URLField()
location = models.CharField(max_length=16)
result = models.TextField()

View File

@ -1,9 +0,0 @@
<locations>
{% for location in locations %}
<location>
<image>{{ location.image_url }}</image>
<riddle>{{ location.riddle }}</riddle>
</location>
{% endfor %}
</locations>

View File

@ -1,12 +0,0 @@
<html>
<head>
<title>UNCC Scavenger</title>
</head>
<body>
<img src="{{ img }}">
<h3>{{ title }}</h3>
<p>{{ body }}</p>
</body>