From 841f4e57feb7550c2602d95566b4955b7505178e Mon Sep 17 00:00:00 2001 From: Pino de Candia <32303022+pinodeca@users.noreply.github.com> Date: Mon, 29 Jan 2018 23:54:59 +0200 Subject: [PATCH] Rename Host and User Certificate panels. --- tatudashboard/dashboards/tatu/host/panel.py | 2 +- tatudashboard/dashboards/tatu/user/panel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tatudashboard/dashboards/tatu/host/panel.py b/tatudashboard/dashboards/tatu/host/panel.py index 518cd17..2fb1532 100644 --- a/tatudashboard/dashboards/tatu/host/panel.py +++ b/tatudashboard/dashboards/tatu/host/panel.py @@ -19,7 +19,7 @@ from openstack_dashboard.dashboards.project import dashboard class Host(horizon.Panel): - name = _("Hosts") + name = _("Host Certificates") slug = 'tatu_host' dashboard.Project.register(Host) diff --git a/tatudashboard/dashboards/tatu/user/panel.py b/tatudashboard/dashboards/tatu/user/panel.py index 0f38083..48648c9 100644 --- a/tatudashboard/dashboards/tatu/user/panel.py +++ b/tatudashboard/dashboards/tatu/user/panel.py @@ -18,7 +18,7 @@ from django.utils.translation import ugettext_lazy as _ from openstack_dashboard.dashboards.project import dashboard class User(horizon.Panel): - name = _("Users") + name = _("User Certificates") slug = 'tatu_user' dashboard.Project.register(User)