diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-16 18:36:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-16 18:36:46 +0100 |
commit | 6f080a33d88f8245bbd26f917fcce5c58d9f62f7 (patch) | |
tree | cc5ca694eeec15ba4a9b16569c846239ecb9012d /archaeological_operations/forms.py | |
parent | 89c66a92b539ab4cc682cf8c774dc65db6c3ba39 (diff) | |
download | Ishtar-6f080a33d88f8245bbd26f917fcce5c58d9f62f7.tar.bz2 Ishtar-6f080a33d88f8245bbd26f917fcce5c58d9f62f7.zip |
Operation: minor change on search form
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index d2ec086ae..d18e7cea7 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -411,11 +411,11 @@ OPERATOR, created = OrganizationType.objects.get_or_create(txt_idx='operator') class OperationSelect(TableSelect): + year = forms.IntegerField(label=_("Year")) + operation_code = forms.IntegerField(label=_(u"Numeric reference")) if settings.COUNTRY == 'fr': code_patriarche = forms.IntegerField( label="Numéro d'opération (OA Patriarche)") - year = forms.IntegerField(label=_("Year")) - operation_code = forms.IntegerField(label=_(u"Numeric reference")) towns = get_town_field() parcel = ParcelField(label=_("Parcel (section/number)")) if settings.ISHTAR_DPTS: |