summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-12-16 05:07:35 +0000
committerGerrit Code Review <review@openstack.org>2016-12-16 05:07:35 +0000
commitec0349748f23ddc5985486a518ccf13e4c475fa9 (patch)
treeb440235c8a9625d8bd370cb3a8d690528f7f4513 /openstack_dashboard/dashboards/project
parentc16c950d40f49bc1f9570ca651fe10976f15a0c1 (diff)
parent9caef6402bcf36daec22827979022d8710eb71ed (diff)
downloadhorizon-ec0349748f23ddc5985486a518ccf13e4c475fa9.tar.gz
Merge "Fix Port Security Enabled information"
Diffstat (limited to 'openstack_dashboard/dashboards/project')
-rw-r--r--openstack_dashboard/dashboards/project/networks/templates/networks/ports/_detail_overview.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/project/networks/templates/networks/ports/_detail_overview.html b/openstack_dashboard/dashboards/project/networks/templates/networks/ports/_detail_overview.html
index 7425976dc..d9187c2a6 100644
--- a/openstack_dashboard/dashboards/project/networks/templates/networks/ports/_detail_overview.html
+++ b/openstack_dashboard/dashboards/project/networks/templates/networks/ports/_detail_overview.html
@@ -20,7 +20,7 @@
<dd>{{ port.status_label|default:_("None") }}</dd>
<dt>{% trans "Admin State" %}</dt>
<dd>{{ port.admin_state_label|default:_("None") }}</dd>
- {% if port.port_security_enabled %}
+ {% if port.port_security_enabled != None %}
<dt>{% trans "Port Security Enabled" %}</dt>
<dd>{{ port.port_security_enabled }}</dd>
{% endif %}