diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-11-24 02:09:54 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-11-24 02:09:54 +0100 |
commit | 9edddaf1cce657e97f3550565e446d9a91e69fce (patch) | |
tree | 53bd093c4245b221f8d4d7f578f6a021cdec3e38 /chimere/forms.py | |
parent | 1b30395108ad1d9dd42e286ca04e534fa928e679 (diff) | |
download | Chimère-9edddaf1cce657e97f3550565e446d9a91e69fce.tar.bz2 Chimère-9edddaf1cce657e97f3550565e446d9a91e69fce.zip |
Fix rapprochement - work on OSM export interface
Diffstat (limited to 'chimere/forms.py')
-rw-r--r-- | chimere/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/forms.py b/chimere/forms.py index 597975d..d02d6ea 100644 --- a/chimere/forms.py +++ b/chimere/forms.py @@ -93,11 +93,11 @@ class OSMForm(forms.Form): """ OSM export form """ - email = forms.EmailField(label=_("OSM user")) + username = forms.EmailField(label=_("OSM user")) password = forms.CharField(label=_(u"Password"), widget=forms.PasswordInput(render_value=False)) # API URL are hardcoded: the day the API change Chimère will need - # adaptations + # adaptations not only on this portion... api = forms.ChoiceField(label=_(u"API"), choices=(('', '--'), ('api06.dev.openstreetmap.org', |