Created
June 10, 2013 22:05
-
-
Save pmichali/5752819 to your computer and use it in GitHub Desktop.
included with modal dialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "horizon/common/_modal_form.html" %} | |
{% load i18n %} | |
{% block form_id %}create_network_form{% endblock %} | |
{% block form_action %}{% url horizon:admin:nexus1000v:create_network_profile %}{% endblock %} | |
{% block modal_id %}create_network_modal{% endblock %} | |
{% block modal-header %}{% trans "Create Network Profile" %}{% endblock %} | |
{% block modal-body %} | |
<div class="left"> | |
<fieldset> | |
{% include "horizon/common/_form_fields.html" %} | |
</fieldset> | |
</div> | |
<div class="right"> | |
<h3>{% trans "Description" %}:</h3> | |
<p>{% trans "Select a name for your network."%}</p> | |
</div> | |
{% endblock %} | |
{% block modal-footer %} | |
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Network Profile" %}" /> | |
<a href="{% url horizon:admin:nexus1000v:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment