mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-13 19:08:20 -05:00
Don't actually need the templates
This commit is contained in:
parent
314934a468
commit
950a188e30
@ -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()
|
||||
|
@ -1,9 +0,0 @@
|
||||
<locations>
|
||||
{% for location in locations %}
|
||||
<location>
|
||||
<image>{{ location.image_url }}</image>
|
||||
|
||||
<riddle>{{ location.riddle }}</riddle>
|
||||
</location>
|
||||
{% endfor %}
|
||||
</locations>
|
@ -1,12 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>UNCC Scavenger</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<img src="{{ img }}">
|
||||
|
||||
<h3>{{ title }}</h3>
|
||||
<p>{{ body }}</p>
|
||||
|
||||
</body>
|
Loading…
Reference in New Issue
Block a user