diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-04 23:56:27 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-24 12:06:09 +0200 |
commit | a9216922671b817682f9613b2bded37a5e883c1f (patch) | |
tree | 9ce5ad9295b69bbb6657230ab7d1d72acde6d4a0 /archaeological_finds | |
parent | 7d62ff77f5caab953e94553928451577bd9574f5 (diff) | |
download | Ishtar-a9216922671b817682f9613b2bded37a5e883c1f.tar.bz2 Ishtar-a9216922671b817682f9613b2bded37a5e883c1f.zip |
JS: Fix find edition
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index af3c5356f..b77560ac9 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -721,7 +721,7 @@ class FindFormSelection(CustomFormSearch): label="", required=False, widget=widgets.DataTable( reverse_lazy('get-find'), - FindSelect, models.Find, + FindSelect, models.Find, source_full=reverse_lazy('get-find-full')), validators=[valid_id(models.Find)]) |