diff options
author | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 12:29:46 +0000 |
---|---|---|
committer | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 12:29:46 +0000 |
commit | c5025ad51d2f0d4657effaf70478facd6bacf100 (patch) | |
tree | a9414b1ee32300c03f870bfd07018426e09a9a8a | |
parent | 2b118a53a97040e06785628e1b8acc42a3555cac (diff) | |
download | troggle-c5025ad51d2f0d4657effaf70478facd6bacf100.tar.gz troggle-c5025ad51d2f0d4657effaf70478facd6bacf100.tar.bz2 troggle-c5025ad51d2f0d4657effaf70478facd6bacf100.zip |
Messing with millenialcaves.html or similar
-rw-r--r-- | core/views_caves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views_caves.py b/core/views_caves.py index 0d8f300..d529cc8 100644 --- a/core/views_caves.py +++ b/core/views_caves.py @@ -69,7 +69,7 @@ def millenialcaves(request): caves1626 = list(Cave.objects.filter(area__short_name = "1626")) caves1623.sort(caveCmp) caves1626.sort(caveCmp) - return render(HttpResponse(content="Some text")) + return render(HttpResponse(content="Some text")) return render_with_context(request,'caveindex.html', {'caves1623': caves1626, 'caves1626': caves1626, 'notablecaves':notablecaves, 'cavepage': True}) |