96 lines
3.6 KiB
Plaintext
96 lines
3.6 KiB
Plaintext
|
<% content_for :page_specific_css do %>
|
|||
|
<%= stylesheet_link_tag "lib/list-check" %>
|
|||
|
<% end %>
|
|||
|
<% content_for :page_specific_javascript do %>
|
|||
|
<%= javascript_include_tag "lib/list-check" %>
|
|||
|
<% end %>
|
|||
|
|
|||
|
<%
|
|||
|
@filter = params[:filter]
|
|||
|
new_filter = params[:new_filter]
|
|||
|
|
|||
|
if @filter && params[:clear]
|
|||
|
@filter.delete(params[:type])
|
|||
|
elsif @filter && new_filter
|
|||
|
if @filter.has_key?(new_filter[:type]) && @filter[new_filter[:type]].include?(new_filter[:id].to_s)
|
|||
|
@filter[new_filter[:type]].delete(new_filter[:id].to_s)
|
|||
|
elsif @filter.has_key?(new_filter[:type])
|
|||
|
@filter[new_filter[:type]] << new_filter[:id].to_s
|
|||
|
else
|
|||
|
@filter.merge!({new_filter[:type] => [new_filter[:id].to_s]})
|
|||
|
end
|
|||
|
elsif new_filter
|
|||
|
@filter = {new_filter[:type] => [new_filter[:id].to_s]}
|
|||
|
end
|
|||
|
|
|||
|
|
|||
|
if @user && is_admin?
|
|||
|
@researchs = Research.where(:create_user_id => @user.id).desc(:publish_date).page(params[:page]).per(10)
|
|||
|
else
|
|||
|
@researchs = Research.where(is_hidden: false, :create_user_id => @user.id).desc(:publish_date).page(params[:page]).per(10)
|
|||
|
end
|
|||
|
|
|||
|
%>
|
|||
|
|
|||
|
<% if is_admin? %>
|
|||
|
<div class="list-active">
|
|||
|
<div class="btn-group">
|
|||
|
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => data_share_panel_personal_research_back_end_researchs_path(:user_id => params[:id], :disable => 'true') ) %>
|
|||
|
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => data_share_panel_personal_research_back_end_researchs_path(:user_id => params[:id], :disable => 'false') ) %>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<% end -%>
|
|||
|
|
|||
|
<table class="table table-condensed table-striped">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<% if is_admin? %>
|
|||
|
<th><input type="checkbox" class="list-check" /></th>
|
|||
|
<% end -%>
|
|||
|
<th class="span2"><%= t('personal_research.publication_date') %></th>
|
|||
|
<th><%= t('personal_research.research_title') %></th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
|
|||
|
<% @researchs.each do |research| %>
|
|||
|
|
|||
|
<tr class="<%= research.is_hidden ? "checkHide" : "" %>">
|
|||
|
<% if is_admin? %>
|
|||
|
<td>
|
|||
|
<%= check_box_tag 'to_change[]', research.id.to_s, false, :class => "list-check" %>
|
|||
|
</td>
|
|||
|
<% end -%>
|
|||
|
<td><%= research.publish_date.strftime("%Y.%m") %></td>
|
|||
|
<td>
|
|||
|
<%= link_to research.research_title, panel_personal_research_front_end_research_path(research) %>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
<% end %>
|
|||
|
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
|
|||
|
<% if is_admin? %>
|
|||
|
<div class="bottomnav clearfix">
|
|||
|
<div class="action pull-right">
|
|||
|
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('personal_plugins.edit_brief_intro'), panel_personal_research_back_end_personal_research_intros_path(:user_id => @user.id), :class => 'btn btn-primary' %>
|
|||
|
<%= link_to content_tag(:i, nil, :class => 'icon-plus') + t('announcement.add_new'), new_panel_personal_research_back_end_research_path(:user_id => @user.id), :class => 'btn btn-primary' %>
|
|||
|
</div>
|
|||
|
<div class="pagination pagination-centered">
|
|||
|
<%= paginate @researchs, :params => {:direction => params[:direction], :sort => params[:sort], :filter => @filter, :new_filter => nil} %>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<% end %>
|
|||
|
|
|||
|
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
|
|||
|
<div class="modal-header">
|
|||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|||
|
<h3><%= t(:sure?) %></h3>
|
|||
|
</div>
|
|||
|
<div class="modal-footer">
|
|||
|
<button class="btn" data-dismiss="modal" aria-hidden="true"><%= t(:close) %></button>
|
|||
|
<button class="delete-item btn btn-danger"><%= t(:submit) %></button>
|
|||
|
</div>
|
|||
|
</div>
|