You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
4.0 KiB
67 lines
4.0 KiB
5 years ago
|
<% define_admin_breadcrumbs do %>
|
||
|
<% add_admin_breadcrumb('实训配置', admins_shixun_settings_path) %>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="box search-form-container shixun-settings-list-form">
|
||
|
<%= form_tag(admins_shixun_settings_path, method: :get, class: 'form-inline search-form', remote: true) do %>
|
||
|
<div class="d-flex flex-column w-100">
|
||
|
<div class="d-flex">
|
||
|
<div class="form-group mr-2">
|
||
|
<label for="status">状态:</label>
|
||
|
<% status_options = [['全部', ''], ["编辑中(#{@editing_shixuns})", "editing"], ["待审核(#{@pending_shixuns})", 'pending'], ["已发布(#{@processed_shixuns})", 'processed'],["已关闭(#{@closed_shixuns})",'closed']] %>
|
||
|
<%= select_tag(:status, options_for_select(status_options), class: 'form-control') %>
|
||
|
</div>
|
||
|
<div class="form-group mr-2">
|
||
|
<label for="tag-choosed">技术平台:</label>
|
||
|
<%= select_tag(:tag, options_for_select(@shixuns_type_check.unshift(["",nil])), class: 'form-control',id:"tag-choosed") %>
|
||
|
</div>
|
||
|
<div class="form-group mr-2">
|
||
|
<label>搜索类型:</label>
|
||
|
<% auto_trial_options = [['创建者姓名', 0], ['实训名称', 1], ['学校名称', 2]] %>
|
||
|
<%= select_tag(:search_type, options_for_select(auto_trial_options), class: 'form-control') %>
|
||
|
</div>
|
||
|
<%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-sm-2 ml-3', placeholder: '输入关键字搜索') %>
|
||
|
<%= submit_tag('搜索', class: 'btn btn-primary ml-3') %>
|
||
|
<%= link_to "清除",admins_shixun_settings_path(status:nil,tag:nil,search_type:nil,keyword:nil),class: "btn btn-default" %>
|
||
|
|
||
|
<div class="">
|
||
|
<a href="<%= admins_shixun_settings_path( :format => "xls") %>" class="btn btn-primary fr" id="shixun_xls">导出</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="d-flex">
|
||
|
<span class="fl ml25 shixun_webssh">
|
||
|
<%= check_box_tag :can_copy,"1",false, class:"mr5 magic-checkbox", id: "can_copy_filter", onchange: "this.form.submit()"%>
|
||
|
<!-- <input type="checkbox" class="mr5 magic-checkbox" name="can_copy" value="1" id="can_copy_filter" onchange="this.form.submit()">-->
|
||
|
<label style="top:2px;padding-left:23px;" for="can_copy_filter"><span class="only_view">只看可复制</span></label>
|
||
|
</span>
|
||
|
<span class="fl ml20 shixun_webssh">
|
||
|
<input type="checkbox" class="mr5 magic-checkbox" name="webssh" value="1" id="webssh_filter">
|
||
|
<label style="top:2px;padding-left:23px;" for="webssh_filter"><span class="only_view">只看可ssh</span></label>
|
||
|
</span>
|
||
|
<span class="fl ml20 shixun_webssh">
|
||
|
<input type="checkbox" class="mr5 magic-checkbox" name="hidden" value="1" id="hidden_filter">
|
||
|
<label style="top:2px;padding-left:23px;" for="hidden_filter"><span class="only_view">只看已隐藏</span></label>
|
||
|
</span>
|
||
|
<span class="fl ml20 shixun_webssh">
|
||
|
<input type="checkbox" class="mr5 magic-checkbox" name="homepage_show" value="1" id="homepage_show_filter">
|
||
|
<label style="top:2px;padding-left:23px;" for="homepage_show_filter"><span class="only_view">只看首页显示</span></label>
|
||
|
</span>
|
||
|
<span class="fl ml20 shixun_webssh">
|
||
|
<input type="checkbox" class="mr5 magic-checkbox" name="task_pass" value="1" id="task_pass_filter">
|
||
|
<label style="top:2px;padding-left:23px;" for="task_pass_filter"><span class="only_view">只看可跳关</span></label>
|
||
|
</span>
|
||
|
<span class="fl ml20 shixun_webssh">
|
||
|
<input type="checkbox" class="mr5 magic-checkbox" name="code_hidden" value="1" id="code_hidden_filter">
|
||
|
<label style="top:2px;padding-left:23px;" for="code_hidden_filter"><span class="only_view">只看已隐藏文件目录</span></label>
|
||
|
</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
|
||
|
<div class="box shixun-settings-list-container">
|
||
|
<%= render partial: 'admins/shixun_settings/shared/list', locals: { shixuns: @shixuns } %>
|
||
|
</div>
|
||
|
|