Update _profile.html.erb
This commit is contained in:
parent
c5d02e0a8c
commit
dcbf5511a4
|
@ -4,60 +4,62 @@
|
||||||
<% content_for :page_specific_javascript do %>
|
<% content_for :page_specific_javascript do %>
|
||||||
<%= javascript_include_tag "lib/list-check" %>
|
<%= javascript_include_tag "lib/list-check" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<%
|
||||||
<% if has_access? %>
|
if has_access?
|
||||||
<div class="list-active">
|
@writing_journals = JournalPaper.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
|
||||||
<div class="btn-group">
|
else
|
||||||
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => toggle_hide_admin_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'true') ) %>
|
@writing_journals = JournalPaper.where(is_hidden: false, member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
|
||||||
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => toggle_hide_admin_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'false') ) %>
|
end
|
||||||
</div>
|
%>
|
||||||
</div>
|
<% if has_access? %>
|
||||||
<% end -%>
|
<div class="list-active">
|
||||||
|
<div class="btn-group">
|
||||||
<table class="table table-condensed table-striped main-list">
|
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => toggle_hide_admin_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'true') ) %>
|
||||||
<thead>
|
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => toggle_hide_admin_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'false') ) %>
|
||||||
<tr>
|
</div>
|
||||||
<% if has_access? %>
|
</div>
|
||||||
<th><input type="checkbox" /></th>
|
<% end -%>
|
||||||
<% end -%>
|
<table class="table table-condensed table-striped main-list">
|
||||||
<th class="span1"><%= t('personal_journal.year') %></th>
|
<thead>
|
||||||
<th><%= t('module_name.journal_paper') %></th>
|
<tr>
|
||||||
<% if not @user%>
|
<% if has_access? %>
|
||||||
<th><%= t('personal_journal.authors') %></th>
|
<th><input type="checkbox" /></th>
|
||||||
<% end %>
|
<% end -%>
|
||||||
</tr>
|
<th class="span1"><%= t('personal_journal.year') %></th>
|
||||||
</thead>
|
<th><%= t('module_name.journal_paper') %></th>
|
||||||
<tbody>
|
<% if not @user%>
|
||||||
|
<th><%= t('personal_journal.authors') %></th>
|
||||||
<% @writing_journals.each do |writing_journal| %>
|
<% end %>
|
||||||
|
</tr>
|
||||||
<tr id="<%= dom_id writing_journal %>" class="<%= writing_journal.is_hidden ? "checkHide" : "" %>">
|
</thead>
|
||||||
<% if has_access? %>
|
<tbody>
|
||||||
<td>
|
|
||||||
<%= check_box_tag 'to_change[]', writing_journal.id.to_s, false, :class => "list-check" %>
|
<% @writing_journals.each do |writing_journal| %>
|
||||||
</td>
|
|
||||||
<% end -%>
|
<tr id="<%= dom_id writing_journal %>" class="<%= writing_journal.is_hidden ? "checkHide" : "" %>">
|
||||||
<td><%= writing_journal.year %></td>
|
<% if has_access? %>
|
||||||
<td>
|
<td>
|
||||||
<%= link_to writing_journal.create_link, OrbitHelper.url_to_plugin_show(writing_journal.to_param,'personal_journal'), target: "blank"%>
|
<%= check_box_tag 'to_change[]', writing_journal.id.to_s, false, :class => "list-check" %>
|
||||||
<div class="quick-edit">
|
</td>
|
||||||
<ul class="nav nav-pills hide">
|
<% end -%>
|
||||||
<% if has_access? %>
|
<td><%= writing_journal.year %></td>
|
||||||
<li><%= link_to t('edit'), '/admin/members/'+@member.to_param+'/journal_papers/'+writing_journal.id+'/edit' %></li>
|
<td>
|
||||||
<li><%= link_to t(:delete_), admin_journal_paper_path(id: writing_journal.id, member_profile_id: @member.id), method: :delete, remote: true, data: { confirm: t('sure?') } %></li>
|
<%= link_to writing_journal.create_link, OrbitHelper.url_to_plugin_show(writing_journal.to_param,'personal_journal'), target: "blank"%>
|
||||||
<% end %>
|
<div class="quick-edit">
|
||||||
</ul>
|
<ul class="nav nav-pills hide">
|
||||||
</div>
|
<% if has_access? %>
|
||||||
|
<li><%= link_to t('edit'), '/admin/members/'+@member.to_param+'/journal_papers/'+writing_journal.id+'/edit' %></li>
|
||||||
</td>
|
<li><%= link_to t(:delete_), admin_journal_paper_path(id: writing_journal.id, member_profile_id: @member.id), method: :delete, remote: true, data: { confirm: t('sure?') } %></li>
|
||||||
<td><%= writing_journal.authors %></td>
|
<% end %>
|
||||||
</tr>
|
</ul>
|
||||||
|
</div>
|
||||||
<% end %>
|
</td>
|
||||||
|
<td><%= writing_journal.authors %></td>
|
||||||
</tbody>
|
</tr>
|
||||||
</table>
|
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
<div class="bottomnav clearfix">
|
<div class="bottomnav clearfix">
|
||||||
<% if has_access? %>
|
<% if has_access? %>
|
||||||
<div class="action pull-right">
|
<div class="action pull-right">
|
||||||
|
@ -70,7 +72,6 @@
|
||||||
<%= paginate @writing_journals, :params => {:direction => params[:direction], :sort => params[:sort] } %>
|
<%= paginate @writing_journals, :params => {:direction => params[:direction], :sort => params[:sort] } %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
|
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
@ -81,4 +82,3 @@
|
||||||
<button class="delete-item btn btn-danger"><%= t(:submit) %></button>
|
<button class="delete-item btn btn-danger"><%= t(:submit) %></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue