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 | 3466a46db5aa71363bfb25aaa20a5f7db0dfdced (patch) | |
tree | 118627ca6dbdf274dc0f1079c02a3a608517f575 | |
parent | 49afebaf97fe6cc32cc5828fbd9dff858762fb63 (diff) | |
download | troggle-3466a46db5aa71363bfb25aaa20a5f7db0dfdced.tar.gz troggle-3466a46db5aa71363bfb25aaa20a5f7db0dfdced.tar.bz2 troggle-3466a46db5aa71363bfb25aaa20a5f7db0dfdced.zip |
Messing with millenialcaves.html or similar
-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") |