<% 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? %>
<%= 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') ) %>
<% end -%> <% if has_access? %> <% end -%> <% @other_papers.each do |other_paper| %> "> <% if has_access? %> <% end %> <% end %>
<%= t('personal_other_paper.title') %> <%= t('personal_other_paper.issue_date') %> <%= t('personal_other_paper.newsletter') %>
<%= check_box_tag 'to_change[]', other_paper.id.to_s, false, :class => "list-check" %> <%= link_to other_paper.title, page_for_other_paper(other_paper), target: "blank" %>
<%= other_paper.issue_date %> <%= other_paper.newsletter %>
<% if has_access? %>
<%= 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' %>
<% end %>