diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-07-16 11:17:49 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-07-16 11:17:49 +0200 |
commit | de4f9794334b78689af5e2b306f82441a6e14184 (patch) | |
tree | 537876e7e5e9889b6a4f1fa51e1d562a1c597270 /archaeological_operations/forms.py | |
parent | 52ef16bd8c29fa70d9a783ecec422f270ccb54b4 (diff) | |
download | Ishtar-de4f9794334b78689af5e2b306f82441a6e14184.tar.bz2 Ishtar-de4f9794334b78689af5e2b306f82441a6e14184.zip |
Operation search: remove autocomplete for partriarche
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index e545ff5fa..a801b60a6 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -114,10 +114,7 @@ class OperationSelect(TableSelect): common_name = forms.CharField(label=_(u"Name (full text search)"), max_length=30) if settings.COUNTRY == 'fr': - code_patriarche = forms.IntegerField( - widget=widgets.JQueryAutoComplete("/" + settings.URL_PATH + \ - 'autocomplete-patriarche/'), - label="Code PATRIARCHE") + code_patriarche = forms.IntegerField(label="Code PATRIARCHE") towns = get_town_field() operation_type = forms.ChoiceField(label=_(u"Operation type"), choices=[]) |