{% extends 'nova/base.html' %} {%load i18n%} {% block sidebar %} {% with current_sidebar="security_groups" %} {{block.super}} {% endwith %} {% endblock %} {% block page_header %} {% url horizon:nova:security_groups:index as refresh_link %} {# to make searchable false, just remove it from the include statement #} {% include "horizon/common/_page_header.html" with title=_("Security Groups") refresh_link=refresh_link searchable="true" %} {% endblock page_header %} {% block dash_main %} {% if security_groups %} {% include 'nova/security_groups/_list.html' %} {% url horizon:nova:security_groups:create as create_sec_url %} {% trans "Create Security Group"%} {% else %}
{% url horizon:nova:security_groups:create as dash_sec_url %}

{% trans "Info"%}

{% blocktrans %}There are currently no security groups. Create A Security Group >>{% endblocktrans %}

{% endif %} {% endblock %}