diff options
author | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 01:34:09 +0000 |
---|---|---|
committer | Rad <radost.waszkiewicz@gmail.com> | 2019-02-26 01:34:09 +0000 |
commit | 533446098f3beaef59b106c5f08d8ff5ac6a2ac4 (patch) | |
tree | a3d49b1e2ac8cbb37a42e537e336fc890c548555 /core | |
parent | 04a7e770c554742a1e85ae4bd165045742c28fdf (diff) | |
download | troggle-533446098f3beaef59b106c5f08d8ff5ac6a2ac4.tar.gz troggle-533446098f3beaef59b106c5f08d8ff5ac6a2ac4.tar.bz2 troggle-533446098f3beaef59b106c5f08d8ff5ac6a2ac4.zip |
Messing with millenialcaves.html or similar
Diffstat (limited to 'core')
-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 bda2de4..8709350 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,'millenialcaves.html', {'somenonsense': HttpResponse("Here's the text of the Web page.")}) + response = HttpResponse("Text only, please.", content_type="text/plain") + return |