mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-06-16 02:35:47 +00:00
c42f8a3aa1
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
26 lines
865 B
HTML
26 lines
865 B
HTML
{% extends "horizon/common/_modal_form.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block form_id %}update_network_form{% endblock %}
|
|
{% block form_action %}{% url 'horizon:admin:networks:update' network_id %}{% endblock %}
|
|
|
|
{% block modal-header %}{% trans "Edit Network" %}{% 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 may update the editable properties of your network here." %}</p>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block modal-footer %}
|
|
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Save Changes" %}" />
|
|
<a href="{% url 'horizon:admin:networks:index' %}" class="btn btn-default secondary cancel close">{% trans "Cancel" %}</a>
|
|
{% endblock %}
|