diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-30 22:44:03 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-30 22:44:03 +0100 |
commit | b545f8ed404407a197347e7330624d706ddc4e0d (patch) | |
tree | f98cefcfc2d9da4ee7607e2452c5a74cb576d351 /core/views/other.py | |
parent | be0148d146263140961e3e47dccd54bc28827e0a (diff) | |
download | troggle-b545f8ed404407a197347e7330624d706ddc4e0d.tar.gz troggle-b545f8ed404407a197347e7330624d706ddc4e0d.tar.bz2 troggle-b545f8ed404407a197347e7330624d706ddc4e0d.zip |
cleaned & removed defunct wiki_to_html
Diffstat (limited to 'core/views/other.py')
-rw-r--r-- | core/views/other.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/views/other.py b/core/views/other.py index d3d1126..748869e 100644 --- a/core/views/other.py +++ b/core/views/other.py @@ -46,7 +46,6 @@ def todos(request, module): from troggle.parsers.survex import todo as parserssurvex from troggle.core.models.caves import todo as modelcaves from troggle.core.forms import todo as forms - from troggle.core.templatetags.wiki_markup import todo as wiki tododict = {'views/other': todo, 'tests': tests, 'views/logbooks': viewlogbooks, @@ -54,8 +53,7 @@ def todos(request, module): 'parsers/logbooks': parserslogbooks, 'parsers/survex': parserssurvex, 'core/models/caves': modelcaves, - 'core/forms': forms, - 'core/templatetags/wiki_markup': wiki} + 'core/forms': forms} return render(request,'core/todos.html', {'tododict': tododict}) def troggle404(request): # cannot get this to work. Handler404 in urls.py not right syntax |