horizon/django-openstack/django_openstack/templates/django_openstack/dash/security_groups/create.html

26 lines
652 B
HTML

{% extends 'django_openstack/dash/base.html' %}
{% block sidebar %}
{% with current_sidebar="security_groups" %}
{{block.super}}
{% endwith %}
{% endblock %}
{% block page_header %}
{% include "django_openstack/common/_page_header.html" with title="Create Security Group" %}
{% endblock page_header %}
{% block dash_main %}
<div class="dash_block">
<div class="left">
{% include 'django_openstack/dash/security_groups/_form.html' %}
</div>
<div class="right">
<h3>Description:</h3>
<p>From here you can create a new security group</p>
</div>
<div class="clear">&nbsp;</div>
</div>
{% endblock %}