{% extends "layout2.html" %} {% load i18n %} {% load static %} {% block css_include %} {% endblock %} {% block js_include %} {% endblock %} {% block content %} {% csrf_token %} {% translate "Create a node" %} {% translate "Hostname" %} {{form.name}} {{form.name.errors|safe}} {{form.pf_limit_states}} {{form.pf_limit_frags}} {{form.pf_limit_src}} {{form.pf_custom_config}} {% endblock %} {% block jquery_code %} $(function() { $('#id_nic').change(function(e) { {{ nic_map_js|safe }} var selected = $(this).val(); if (! selected) { $("#carp_info").hide(); return; } nb_nic = selected.length; //This is a CARP configuration if (nb_nic > 1) { $("#carp_info").show(); } else { $("#carp_info").hide(); } }); $('#id_nic').trigger('change'); }); {% endblock %}