{% extends "data_opform.html" %} {% load i18n %} {% block form %} {% autoescape off %} {% 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_linkage_input_type&dev_id="+ dev_id, dataType: "json", async: false, success: function(datas) { if(datas.type == 0) { $("#id_door_reader_type_0").attr("checked",'checked'); } else { $("#id_door_reader_type_1").attr("checked",'checked'); } }, error: function(XMLHttpRequest, textStatus, errorThrown) { alert(gettext("服务器处理数据失败,请重试!错误码:")+"-623"); } }); {% else %} alert(gettext("对不起,您没有访问该页面的权限,不能浏览更多信息!")); window.location.href = "/{{ request.surl }}accounts/login/"; {% endif %} {% endblock%}