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

26 lines
829 B
HTML

{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block form_id %}add_interface_form{% endblock %}
{% block form_action %}{% url form_url router.id %}
{% endblock %}
{% block modal-header %}{% trans "Add 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 connect a specified subnet to the router." %}
</p>
<p>
{% trans "The default IP address of the interface created is a gateway of the selected subnet. You can specify another IP address of the interface here. You must select a subnet to which the specified IP address belongs to from the above list." %}
</p>
</div>
{% endblock %}