Skip to content

Instantly share code, notes, and snippets.

@pmichali
Created June 10, 2013 22:05
Show Gist options
  • Save pmichali/5752819 to your computer and use it in GitHub Desktop.
Save pmichali/5752819 to your computer and use it in GitHub Desktop.
included with modal dialog
{% 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