
Implements bp quantum-l3-support Implemented basic CRD for router Add/remove interface support Support set gateway and clear gateway Change-Id: Ie4cac962eb8fadc021c80cf05e2aa63caab3c00a
22 lines
744 B
HTML
22 lines
744 B
HTML
{% extends "horizon/common/_modal_form.html" %}
|
|
{% load i18n horizon humanize %}
|
|
|
|
{% block form_id %}{% endblock %}
|
|
{% block form_action %}{% url horizon:admin:routers:create %}?{{ request.GET.urlencode }}{% endblock %}
|
|
|
|
{% block modal_id %}create_router_modal{% endblock %}
|
|
{% block modal-header %}{% trans "Create router" %}{% endblock %}
|
|
|
|
{% block modal-body %}
|
|
<div class="left">
|
|
<fieldset>
|
|
{% include "horizon/common/_form_fields.html" %}
|
|
</fieldset>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block modal-footer %}
|
|
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Create router" %}" />
|
|
<a href="{% url horizon:admin:routers:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
|
|
{% endblock %}
|