{% extends "base.html" %} {% from "_macros.html" import empty %} {% block title %}Security groups ยท mgf-cloud-web{% endblock %} {% block content %}
{% if secgroups %}
{% for g in secgroups %} {% endfor %}
NameDescriptionRules
{{ g.name }} {{ g.description }} {{ g.rules|length }}
{% else %} {{ empty("No security groups.", "Create a group to define firewall rules.") }} {% endif %}
{% endblock %}