Fixes LP bug 875231 -- use tenant name instead of id for dropdown.

This commit is contained in:
Gabriel Hurley 2011-10-27 15:23:41 -07:00
parent 65987c41f0
commit 26d08f9b33

View File

@ -47,7 +47,7 @@ class UserForm(forms.Form):
def __init__(self, *args, **kwargs):
tenant_list = kwargs.pop('tenant_list', None)
super(UserForm, self).__init__(*args, **kwargs)
self.fields['tenant_id'].choices = [[tenant.id, tenant.id]
self.fields['tenant_id'].choices = [[tenant.id, tenant.name]
for tenant in tenant_list]
name = forms.CharField(label=_("Name"))
@ -62,7 +62,7 @@ class UserUpdateForm(forms.Form):
def __init__(self, *args, **kwargs):
tenant_list = kwargs.pop('tenant_list', None)
super(UserUpdateForm, self).__init__(*args, **kwargs)
self.fields['tenant_id'].choices = [[tenant.id, tenant.id]
self.fields['tenant_id'].choices = [[tenant.id, tenant.name]
for tenant in tenant_list]
id = forms.CharField(label=_("ID"),