Merge "Fix the attribute to look up security group ids of a port (3)"

This commit is contained in:
Zuul 2025-01-10 19:42:42 +00:00 committed by Gerrit Code Review
commit 0d6da3e19c
2 changed files with 3 additions and 2 deletions

View File

@ -123,7 +123,7 @@ class DetailView(tabs.TabbedTableView):
results = futurist_utils.call_functions_parallel(
(get_network, [port.network_id]),
(get_security_groups, [tuple(port.security_group_ids)]))
network, port.security_groups = results
network, security_groups = results
port.network_name = network.get('name')
port.network_url = reverse(network_url, args=[port.network_id])
@ -138,6 +138,7 @@ class DetailView(tabs.TabbedTableView):
]
context["custom_breadcrumb"] = breadcrumb
context["port"] = port
context["security_groups"] = security_groups
context["url"] = reverse(
'horizon:project:networks:ports_tab', args=[port.network_id])
context["actions"] = table.render_row_actions(port)

View File

@ -86,7 +86,7 @@
<h4>{% trans "Security Groups" %}</h4>
<hr class="header_rule">
<dl class="dl-horizontal">
{% for group in port.security_groups %}
{% for group in security_groups %}
<dt class="word-wrap">{{ group.name }}</dt>
<dd>
<ul class="list-unstyled">