horizon/openstack_dashboard/dashboards/project/routers/templates/routers/ports/_setgateway.html

26 lines
865 B
HTML

{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block form_id %}setgateway_form{% endblock %}
{% block form_action %}{% url horizon:project:routers:setgateway router.id %}
{% endblock %}
{% block modal-header %}{% trans "Add Gateway Interface" %}{% 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 "You can add inteface for Gateway. In this interface, NAT rule of floating IP will be set." %}</p>
</div>
{% endblock %}
{% block modal-footer %}
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Set Gateway" %}" />
<a href="{% url horizon:project:routers:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
{% endblock %}