summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/networks/tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/admin/networks/tables.py')
-rw-r--r--openstack_dashboard/dashboards/admin/networks/tables.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/admin/networks/tables.py b/openstack_dashboard/dashboards/admin/networks/tables.py
index 9807f124d..6b2fc2590 100644
--- a/openstack_dashboard/dashboards/admin/networks/tables.py
+++ b/openstack_dashboard/dashboards/admin/networks/tables.py
@@ -99,7 +99,9 @@ class NetworksTable(tables.DataTable):
verbose_name=_("DHCP Agents"))
shared = tables.Column("shared", verbose_name=_("Shared"),
filters=(filters.yesno, filters.capfirst))
- status = tables.Column("status", verbose_name=_("Status"))
+ status = tables.Column(
+ "status", verbose_name=_("Status"),
+ display_choices=project_tables.STATUS_DISPLAY_CHOICES)
admin_state = tables.Column("admin_state",
verbose_name=_("Admin State"),
display_choices=DISPLAY_CHOICES)