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 | a37e0f6e2e116b63fbf2a4e6fd7f94b848f35040 (patch) | |
| tree | cc5ca694eeec15ba4a9b16569c846239ecb9012d /archaeological_operations/forms.py | |
| parent | 677d748509c5efa0fe6451d69b531caff5ac0a6f (diff) | |
| download | Ishtar-a37e0f6e2e116b63fbf2a4e6fd7f94b848f35040.tar.bz2 Ishtar-a37e0f6e2e116b63fbf2a4e6fd7f94b848f35040.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: | 
