diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-02 10:58:57 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-01-02 10:58:57 +0100 |
commit | 8526ccdf7f16c3bcdb26f919db603dd65dcaf7a4 (patch) | |
tree | a5cfd334641bc240bcc1c0587e5e4d7bb5af97f5 /archaeological_finds/views.py | |
parent | 153b7057f7ba490660f7363d47fdfcd1b0a985d2 (diff) | |
download | Ishtar-8526ccdf7f16c3bcdb26f919db603dd65dcaf7a4.tar.bz2 Ishtar-8526ccdf7f16c3bcdb26f919db603dd65dcaf7a4.zip |
Quick fix for find modification init
Diffstat (limited to 'archaeological_finds/views.py')
-rw-r--r-- | archaeological_finds/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index 20aa571e9..3442ed2f4 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -293,10 +293,14 @@ def find_modify(request, pk): q = models.Find.objects.filter(pk=pk) if not q.count(): raise Http404() + step = "selecrecord-find_modification" + ''' step = 'find-find_modification' find = q.all()[0] if find.base_finds.count() > 1: step = 'simplefind-find_modification' + + ''' return redirect( reverse('find_modification', kwargs={'step': step})) |