diff options
author | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 01:43:28 +0000 |
---|---|---|
committer | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 01:43:28 +0000 |
commit | a89123755c50d243fda2dcd3c047f681a0a025e1 (patch) | |
tree | 118627ca6dbdf274dc0f1079c02a3a608517f575 /core/views_caves.py | |
parent | 0fb9accd05082c6dbcb42d5f41d292d35b45c017 (diff) | |
download | troggle-a89123755c50d243fda2dcd3c047f681a0a025e1.tar.gz troggle-a89123755c50d243fda2dcd3c047f681a0a025e1.tar.bz2 troggle-a89123755c50d243fda2dcd3c047f681a0a025e1.zip |
Messing with millenialcaves.html or similar
Diffstat (limited to 'core/views_caves.py')
-rw-r--r-- | core/views_caves.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/views_caves.py b/core/views_caves.py index 6f7b4a5..a1a4093 100644 --- a/core/views_caves.py +++ b/core/views_caves.py @@ -62,7 +62,8 @@ def caveindex(request): def millenialcaves(request): #RW messing around area - return render_with_context(request,'caveindex.html') + return render(HttpResponse("Text only, please.", content_type="text/plain")) + return render_with_context(request,'caveindex.html',{'caves1623': HttpResponse("Text only, please.", content_type="text/plain")}) return HttpResponse("Text only, please.", content_type="text/plain") |