105 lines
4.1 KiB
Plaintext
105 lines
4.1 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?
|
||
@writing_books = WritingBook.where(:create_user_id => @user.id).desc(:year).page(params[:page]).per(10)
|
||
else
|
||
@writing_books = WritingBook.where(is_hidden: false, :create_user_id => @user.id).desc(:year).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_book_back_end_writing_books_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_book_back_end_writing_books_path(:user_id => params[:id], :disable => 'false') ) %>
|
||
</div>
|
||
</div>
|
||
<% end -%>
|
||
|
||
<table class="table table-condensed table-striped main-list">
|
||
<thead>
|
||
<tr>
|
||
<% if is_admin? %>
|
||
<th><input type="checkbox" /></th>
|
||
<% end -%>
|
||
<th class="span1"><%= t('personal_book.year') %></th>
|
||
<th><%= t('personal_book.book_title') %></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
|
||
<% @writing_books.each do |writing_book| %>
|
||
|
||
<tr id="<%= dom_id writing_book %>" class="<%= writing_book.is_hidden ? "checkHide" : "" %>">
|
||
<% if is_admin? %>
|
||
<td>
|
||
<%= check_box_tag 'to_change[]', writing_book.id.to_s, false, :class => "list-check" %>
|
||
</td>
|
||
<% end -%>
|
||
<td><%= writing_book.year %></td>
|
||
<td>
|
||
<%= link_to writing_book.create_link, panel_personal_book_front_end_writing_book_path(writing_book) %>
|
||
<div class="quick-edit">
|
||
<ul class="nav nav-pills hide">
|
||
<%if at_least_module_manager || writing_book.writing_book_category.cur_user_is_sub_manager_of(:edit)%>
|
||
<li><%= link_to t('edit'), edit_panel_personal_book_back_end_writing_book_path(writing_book,:user_id => @user.id) %></li>
|
||
<li><%= link_to t(:delete_), panel_personal_book_back_end_writing_book_path(writing_book,:user_id => @user.id), :confirm => t('sure?'), :method => :delete, :remote => true %></li>
|
||
<% end -%>
|
||
</ul>
|
||
</div>
|
||
</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_book_back_end_personal_book_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_book_back_end_writing_book_path(:user_id => @user.id), :class => 'btn btn-primary' %>
|
||
</div>
|
||
<div class="pagination pagination-centered">
|
||
<%= paginate @writing_books, :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>
|