parent
2c4419794c
commit
ffc4e52114
@ -0,0 +1,6 @@
|
||||
class Admins::ShixunFeedbackMessagesController < Admins::BaseController
|
||||
|
||||
def index
|
||||
|
||||
end
|
||||
end
|
@ -0,0 +1,14 @@
|
||||
<% define_admin_breadcrumbs do %>
|
||||
<% add_admin_breadcrumb('实训反馈', admins_shixun_feedback_messages_path) %>
|
||||
<% end %>
|
||||
|
||||
<div class="box search-form-container">
|
||||
<%= form_tag(admins_shixun_feedback_messages_path, method: :get, class: 'form-inline search-form', remote: true) do %>
|
||||
<%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-md-4 ml-3', placeholder: '输入实训名称关键字进行搜索') %>
|
||||
<%= submit_tag('搜索', class: 'btn btn-primary ml-3', 'data-disable-with': '搜索中...') %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<div class="box admin-list-container">
|
||||
<%= render(partial: 'admins/shixun_feedback_messages/shared/list', locals: {}) %>
|
||||
</div>
|
@ -0,0 +1,24 @@
|
||||
<table class="table table-hover text-center">
|
||||
<thead class="thead-light">
|
||||
<tr>
|
||||
<th width="6%">ID</th>
|
||||
<th width="10%">标识</th>
|
||||
<th width="22%" class="text-left">实训名称</th>
|
||||
<th width="10%">实训老师</th>
|
||||
<th width="6%">完成</th>
|
||||
<th width="6%">经验值</th>
|
||||
<th width="10%">学员姓名</th>
|
||||
<th width="16%" class="text-left">学员单位</th>
|
||||
<th width="14%">11</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% if true %>
|
||||
|
||||
<% else %>
|
||||
<%= render 'admins/shared/no_data_for_table' %>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<%#= render partial: 'admins/shared/paginate', locals: { objects: myshixuns } %>
|
Loading…
Reference in new issue