summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-10-28 16:05:41 +0000
committerGerrit Code Review <review@openstack.org>2020-10-28 16:05:41 +0000
commit8b39bf28c156abefd1bc738f077f02943a75377e (patch)
treec43d8409b63d24af4e7cc4420767456057dea8f2
parent297e2e335e65b7df28396e3349f1222ff0b46305 (diff)
parent8375a0e208e487f555bd4ed8600286c5aa7130eb (diff)
downloadhorizon-8b39bf28c156abefd1bc738f077f02943a75377e.tar.gz
Merge "users: Correct lock_password status visibility (Yes/No) in user details" into stable/ussuri
-rw-r--r--openstack_dashboard/dashboards/identity/users/tabs.py2
-rw-r--r--openstack_dashboard/dashboards/identity/users/views.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/dashboards/identity/users/tabs.py b/openstack_dashboard/dashboards/identity/users/tabs.py
index bd47925a5..ca6f71c64 100644
--- a/openstack_dashboard/dashboards/identity/users/tabs.py
+++ b/openstack_dashboard/dashboards/identity/users/tabs.py
@@ -76,11 +76,13 @@ class OverviewTab(tabs.Tab):
def get_context_data(self, request):
user = self.tab_group.kwargs['user']
+ options = getattr(user, 'options', {})
return {
"user": user,
"domain_name": self._get_domain_name(user),
'extras': self._get_extras(user),
'project_name': self._get_project_name(user),
+ 'lock_password': options.get('lock_password', False),
}
diff --git a/openstack_dashboard/dashboards/identity/users/views.py b/openstack_dashboard/dashboards/identity/users/views.py
index 4abb538a2..2c810ae70 100644
--- a/openstack_dashboard/dashboards/identity/users/views.py
+++ b/openstack_dashboard/dashboards/identity/users/views.py
@@ -211,8 +211,6 @@ class DetailView(tabs.TabView):
context["user"] = user
context["url"] = self.get_redirect_url()
context["actions"] = table.render_row_actions(user)
- options = getattr(user, "options", {})
- context["lock_password"] = options.get("lock_password", False)
return context
@memoized.memoized_method