From dcbf5511a40ea82aac3ab6aac6b6e73d7598e34e Mon Sep 17 00:00:00 2001 From: chiu Date: Sun, 3 Nov 2019 20:13:04 +0800 Subject: [PATCH] Update _profile.html.erb --- .../plugin/personal_journal/_profile.html.erb | 112 +++++++++--------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/app/views/plugin/personal_journal/_profile.html.erb b/app/views/plugin/personal_journal/_profile.html.erb index e3e11b9..1af5d4f 100644 --- a/app/views/plugin/personal_journal/_profile.html.erb +++ b/app/views/plugin/personal_journal/_profile.html.erb @@ -4,60 +4,62 @@ <% content_for :page_specific_javascript do %> <%= javascript_include_tag "lib/list-check" %> <% 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_journal_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_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'false') ) %> -
-
- <% end -%> - - - - - <% if has_access? %> - - <% end -%> - - - <% if not @user%> - - <% end %> - - - - - <% @writing_journals.each do |writing_journal| %> - - "> - <% if has_access? %> - - <% end -%> - - - - - - <% end %> - - -
<%= t('personal_journal.year') %><%= t('module_name.journal_paper') %><%= t('personal_journal.authors') %>
- <%= check_box_tag 'to_change[]', writing_journal.id.to_s, false, :class => "list-check" %> - <%= writing_journal.year %> - <%= link_to writing_journal.create_link, OrbitHelper.url_to_plugin_show(writing_journal.to_param,'personal_journal'), target: "blank"%> -
- -
- -
<%= writing_journal.authors %>
- +<% + if has_access? + @writing_journals = JournalPaper.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10) + else + @writing_journals = JournalPaper.where(is_hidden: false, member_profile_id: @member.id).desc(:year).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_journal_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_journal_papers_path(member_profile_id: @member.id.to_s, disable: 'false') ) %> +
+
+<% end -%> + + + + <% if has_access? %> + + <% end -%> + + + <% if not @user%> + + <% end %> + + + + + <% @writing_journals.each do |writing_journal| %> + + "> + <% if has_access? %> + + <% end -%> + + + + + + <% end %> + +
<%= t('personal_journal.year') %><%= t('module_name.journal_paper') %><%= t('personal_journal.authors') %>
+ <%= check_box_tag 'to_change[]', writing_journal.id.to_s, false, :class => "list-check" %> + <%= writing_journal.year %> + <%= link_to writing_journal.create_link, OrbitHelper.url_to_plugin_show(writing_journal.to_param,'personal_journal'), target: "blank"%> +
+ +
+
<%= writing_journal.authors %>
<% if has_access? %>
@@ -70,7 +72,6 @@ <%= paginate @writing_journals, :params => {:direction => params[:direction], :sort => params[:sort] } %>
- -