{% extends "data_opform.html" %} {% load i18n %} {% block form %} {% autoescape off %} {% block aux_head %}{% endblock %}
{% trans "辅助输出点" %}{% trans "当前名称" %} {% trans "新名称" %}
{% if form.non_field_errors %} {{ form.non_field_errors }} {% endif %} {% endautoescape %} {% endblock %} {% block loading %} {% endblock %} {% block addjs %} {% if request.user|HasPerm:"iclock.opgetmoreoptions_device" %} var dev_id = 0; $(".select_row").each(function(){ if($(this).attr("checked")) { dev_id = $(this).parents("tr").attr("data"); } }); $.ajax({ type: "POST", url: "/{{ request.surl }}iaccess/GetData/?func=get_device_aux_point&dev_id="+ dev_id, dataType: "json", async: false, success: function(datas) { {% block aux_base_variables %} var auxs = datas.aux_out_list; //var tmp_name = gettext("辅助输出"); {% endblock%} if(auxs != "") { for(i in auxs) { $("#tr_auxout").parent().append(''+auxs[i][3]+''+auxs[i][2]+''); } } else { $("#tr_auxout").empty().append('
'+gettext("获取设备扩展参数失败,当前操作不可用!")+'
'); } }, error: function(XMLHttpRequest, textStatus, errorThrown) { alert(gettext("服务器处理数据失败,请重试!错误码:")+"-623"); } }); {% else %} alert(gettext("对不起,您没有访问该页面的权限,不能浏览更多信息!")); window.location.href = "/{{ request.surl }}accounts/login/"; {% endif %} {% endblock%}