diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-07 11:09:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 10:46:13 +0200 |
commit | fdd0231543be132b846e3bf12127cd01860f55bf (patch) | |
tree | d605a5b6bc1aa62d20631a965fc6bd6fd341bc86 /archaeological_finds/forms.py | |
parent | 52f6b37f1a1deac66f0b84c466be6c8dab277514 (diff) | |
download | Ishtar-fdd0231543be132b846e3bf12127cd01860f55bf.tar.bz2 Ishtar-fdd0231543be132b846e3bf12127cd01860f55bf.zip |
Fix tests and fixtures for new document management (refs #4107)
Diffstat (limited to 'archaeological_finds/forms.py')
-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 1636c7897..82c7cc34e 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -455,7 +455,7 @@ class FindSelect(TableSelect): base_finds__batch = forms.ChoiceField( label=_(u"Batch/object"), choices=[]) checked = forms.ChoiceField(label=_("Check")) - images__pk__isnull = forms.NullBooleanField(label=_(u"Has an image?")) + documents__image__isnull = forms.NullBooleanField(label=_(u"Has an image?")) def __init__(self, *args, **kwargs): super(FindSelect, self).__init__(*args, **kwargs) |