diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-10 17:11:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-10 17:11:20 +0100 |
commit | 06fe3de959ceb28cfa80ba305944a8fcbd309c1e (patch) | |
tree | 0e19d5797f6076fa99ceb02f3c0faf01db5419a5 /ishtar/furnitures/forms.py | |
parent | ec6f4cad842965b97ee222f0827d1f6ab2e12d6f (diff) | |
download | Ishtar-06fe3de959ceb28cfa80ba305944a8fcbd309c1e.tar.bz2 Ishtar-06fe3de959ceb28cfa80ba305944a8fcbd309c1e.zip |
Correct Operation selection by town
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r-- | ishtar/furnitures/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py index 087b52a3b..8dfce73c8 100644 --- a/ishtar/furnitures/forms.py +++ b/ishtar/furnitures/forms.py @@ -1170,7 +1170,7 @@ class OperationWizard(Wizard): return datas class OperationSelect(forms.Form): - town = forms.IntegerField(label=_(u"Town"), + towns = forms.IntegerField(label=_(u"Town"), widget=widgets.JQueryAutoComplete("/" + settings.URL_PATH + \ 'autocomplete-town', associated_model=models.Town), validators=[models.valid_id(models.Town)]) |