diff --git a/openstack_dashboard/dashboards/identity/users/tables.py b/openstack_dashboard/dashboards/identity/users/tables.py index 2f9fda0daf..82f9b511b6 100644 --- a/openstack_dashboard/dashboards/identity/users/tables.py +++ b/openstack_dashboard/dashboards/identity/users/tables.py @@ -235,7 +235,8 @@ class UsersTable(tables.DataTable): widget=forms.Textarea(attrs={'rows': 4}), required=False), update_action=UpdateCell) - email = tables.Column('email', verbose_name=_('Email'), + email = tables.Column(lambda obj: getattr(obj, 'email', None), + verbose_name=_('Email'), form_field=forms.EmailField(required=False), update_action=UpdateCell, filters=(lambda v: defaultfilters