{% load i18n sizeformat parse_date %}
{% trans "Name" %}
{{ firewall_group.name|default:_("-") }}
{% trans "Description" %}
{{ firewall_group.description|default:_("-") }}
{% trans "ID" %}
{{ firewall_group.id }}
{% trans "Project ID" %}
{{ firewall_group.tenant_id }}
{% trans "Ingress Policy ID" %}
{% if firewall_group.ingress_firewall_policy_id %} {% url 'horizon:project:firewalls_v2:policydetails' firewall_group.ingress_firewall_policy_id as policy_url %} {{firewall_group.ingress_policy.name|default:firewall_group.ingress_firewall_policy_id }} {% else %} {% trans "-" %} {% endif %}
{% trans "Egress Policy ID" %}
{% if firewall_group.egress_firewall_policy_id %} {% url 'horizon:project:firewalls_v2:policydetails' firewall_group.egress_firewall_policy_id as policy_url %} {{firewall_group.egress_policy.name|default:firewall_group.egress_firewall_policy_id }} {% else %} {% trans "-" %} {% endif %}
{% trans "Status" %}
{{ firewall_group.status }}
{% trans "Admin State Up" %}
{{ firewall_group.admin_state_up}}
{% trans "Shared" %}
{{ firewall_group.shared|yesno|capfirst }}