personal_other_paper/app/views/plugin/personal_other_paper/_profile.html.erb

83 lines
3.2 KiB
Plaintext
Raw Normal View History

2022-10-24 09:02:42 +00:00
<% 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 %>
<%
if has_access?
@other_papers = OtherPaper.where(member_profile_id: @member.id).sort_hash.page(params[:page]).per(10)
else
@other_papers = OtherPaper.where(is_hidden: false, member_profile_id: @member.id).sort_hash.page(params[:page]).per(10)
end
%>
<% if has_access? %>
<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 => toggle_hide_admin_other_papers_path(member_profile_id: @member.id.to_s, disable: 'true') ) %>
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => toggle_hide_admin_other_papers_path(member_profile_id: @member.id.to_s, disable: 'false') ) %>
</div>
</div>
<% end -%>
<table class="table table-condensed table-striped main-list">
<thead>
<tr>
<% if has_access? %>
<th><input type="checkbox" /></th>
<% end -%>
<th><%= t('personal_other_paper.title') %></th>
<th><%= t('personal_other_paper.issue_date') %></th>
<th><%= t('personal_other_paper.newsletter') %></th>
</tr>
</thead>
<tbody>
<% @other_papers.each do |other_paper| %>
<tr id="<%= dom_id other_paper %>" class="<%= other_paper.is_hidden ? "checkHide" : "" %>">
<% if has_access? %>
<td>
<%= check_box_tag 'to_change[]', other_paper.id.to_s, false, :class => "list-check" %>
</td>
<% end %>
<td>
<%= link_to other_paper.title, page_for_other_paper(other_paper), target: "blank" %>
<div class="quick-edit">
<ul class="nav nav-pills hide">
<li><%= link_to t('edit'), edit_admin_other_paper_path(other_paper,:page => params[:page]) %></li>
<li><%= link_to t(:delete_), admin_other_paper_path(id: other_paper.id, :page => params[:page]), method: :delete, data: { confirm: 'Are you sure?' } %></li>
</ul>
</div>
</td>
<td><%= other_paper.issue_date %></td>
<td><%= other_paper.newsletter %></td>
</tr>
<% end %>
</tbody>
</table>
<div class="bottomnav clearfix">
<% if has_access? %>
<div class="action pull-right">
<%= link_to content_tag(:i, nil, :class => 'icon-edit') +' '+ t('setting'),'/admin/members/'+@member.to_param+'/other_papers/frontend_setting', :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') +' '+ t('new_'),
'/admin/members/'+@member.to_param+'/other_papers/new', :class => 'btn btn-primary' %>
</div>
<% end %>
<div class="pagination pagination-centered">
<%= paginate @other_papers, :params => {:direction => params[:direction], :sort => params[:sort] } %>
</div>
</div>
<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>