diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-26 13:55:40 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-26 13:55:40 +0200 |
| commit | 413013f639219841476fd17e91e4887b1e7a5de4 (patch) | |
| tree | 5dae823ae5c269a2ac2320d103680315be4be4ab /archaeological_finds/forms.py | |
| parent | 2e23c46ab9846d33882aa32ceb88f862802f7da4 (diff) | |
| download | Ishtar-413013f639219841476fd17e91e4887b1e7a5de4.tar.bz2 Ishtar-413013f639219841476fd17e91e4887b1e7a5de4.zip | |
Add "Has an image?" in find searches (refs #1314)
Diffstat (limited to 'archaeological_finds/forms.py')
| -rw-r--r-- | archaeological_finds/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index efb827ef4..b72210946 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -107,6 +107,7 @@ class FindSelect(TableSelect): material_type = forms.ChoiceField(label=_(u"Material type"), choices=[]) base_finds__find__description = forms.CharField(label=_(u"Description")) base_finds__is_isolated = forms.NullBooleanField(label=_(u"Is isolated?")) + image = forms.NullBooleanField(label=_(u"Has an image?")) def __init__(self, *args, **kwargs): super(FindSelect, self).__init__(*args, **kwargs) |
