Arvind Somya ca51e21e9f Merged quantum code into django-openstack module
- Merged django-quantum code into django-openstack.
- Added quantum connector to django_openstack's api.
- Moved creating networks to a separate page.
- Moved creating ports to a separate page.
- Aligned styles to the updated dashboard style.
- Checking in 1.8.xx jquery ui libs for dialog boxes.
- Moved port specific code to a separate port view.
2011-08-16 15:04:36 -04:00

29 lines
822 B
HTML

{% extends 'dash_base.html' %}
{% block sidebar %}
{% with current_sidebar="networks" %}
{{block.super}}
{% endwith %}
{% endblock %}
{% block page_header %}
{# to make searchable false, just remove it from the include statement #}
{% include "_page_header.html" with title="Create Network" %}
{% endblock page_header %}
{% block dash_main %}
<div class="dash_block">
<div class="left">
{% include '_create_port.html' with form=create_form %}
<h3><a href="{% url dash_networks_detail request.user.tenant network_id %}"><< Return to network detail</a></h3>
</div>
<div class="right">
<h3>Description:</h3>
<p>You can plug virtual interfaces from your instances to ports created in the network</p>
</div>
<div class="clear">&nbsp;</div>
</div>
{% endblock %}