% 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? @patents = Patent.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10) else @patents = Patent.where(is_hidden: false, member_profile_id: @member.id).desc(:year).page(params[:page]).per(10) end %> <% if has_access? %>
<% end -%> | <%= t('personal_patent.publication_date') %> | <%= t('personal_patent.patent_title') %> | <%= t('personal_patent.patent_no') %> | <%= t('personal_patent.patent_country') %> | <%= t('personal_patent.authors') %> |
---|---|---|---|---|---|
<%= check_box_tag 'to_change[]', patent.id.to_s, false, :class => "list-check" %> | <% end %><%= (patent.publish_date.strftime("%Y.%m") rescue "") %> |
<%= link_to patent.patent_title, OrbitHelper.url_to_plugin_show(patent.to_param,'personal_patent').to_s, target: "blank"%>
|
<%= patent.patent_no %> | <%= patent.patent_country %> | <%= patent.member_profile.name %> |