mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-25 08:43:36 +00:00
85 lines
2.7 KiB
HTML
85 lines
2.7 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
#
|
|
# This file is part of Plinth.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Create Connection" %}"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block page_js %}
|
|
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
|
|
if ($("#id_ipv4_method").prop("value") != "manual") {
|
|
$("#id_ipv4_address").prop("readOnly", true);
|
|
$("#id_ipv4_netmask").prop("readOnly", true);
|
|
$("#id_ipv4_gateway").prop("readOnly", true);
|
|
}
|
|
$("#id_name").focus();
|
|
|
|
$("#id_ipv4_method").change(function() {
|
|
if ($("#id_ipv4_method").prop("value") == "manual") {
|
|
$("#id_ipv4_address").prop("readOnly", false);
|
|
$("#id_ipv4_address").prop("required", true);
|
|
$("#id_ipv4_netmask").prop("readOnly", false);
|
|
$("#id_ipv4_gateway").prop("readOnly", false);
|
|
} else {
|
|
$("#id_ipv4_address").val("");
|
|
$("#id_ipv4_address").prop("readOnly", true);
|
|
$("#id_ipv4_address").prop("required", false);
|
|
$("#id_ipv4_netmask").val("");
|
|
$("#id_ipv4_netmask").prop("readOnly", true);
|
|
$("#id_ipv4_gateway").val("");
|
|
$("#id_ipv4_gateway").prop("readOnly", true);
|
|
}
|
|
});
|
|
|
|
$('#id_show_password').change(function() {
|
|
// Changing type attribute from password to text is prevented by
|
|
// most browsers. Making a new form field works.
|
|
new_type = 'password';
|
|
if ($('#id_show_password').prop('checked'))
|
|
new_type = 'text';
|
|
|
|
$('#id_password').replaceWith(
|
|
$('#id_password').clone().attr('type', new_type));
|
|
});
|
|
|
|
})(jQuery);
|
|
</script>
|
|
|
|
{% endblock %}
|