orbit-personalresearch/app/views/panel/personal_research/front_end/researchs/index.html.erb

34 lines
866 B
Plaintext

<% # encoding: utf-8 %>
<%= flash_messages %>
<h1><%= t('module_name.personal_research') %></h1>
<table class="table">
<thead>
<tr>
<th class="grid2"><%= t('personal_research.publication_date') %></th>
<th class="grid10"><%= t('personal_research.research_title') %></th>
<th class="grid10"><%= t('personal_research.authors') %></th>
</tr>
</thead>
<tbody>
<% @researchs.each do |research| %>
<tr>
<td><%= research.publish_date.strftime("%Y.%m") %></td>
<td>
<%= link_to research.research_title, panel_personal_research_front_end_research_path(research) %>
</td>
<td><%= "#{User.from_id(research.create_user_id).name rescue ''},#{research.authors rescue ''}"%></td>
</tr>
<% end %>
</tbody>
</table>
<%= paginate @researchs, :params => {:inner => false}%>