personal-research/app/views/admin/researchs/index.html.erb

13 lines
476 B
Plaintext
Raw Normal View History

2014-07-04 07:18:31 +00:00
<table class="table main-list">
<thead>
<tr>
<th class="span1"><%= t('personal_research.year') %></th>
<th class="span1"><%= t('personal_research.publication_date') %></th>
<th class="span5"><%= t('personal_research.research_title') %></th>
<th class="span3"><%= t('users.name') %></th>
</tr>
</thead>
<tbody id="tbody_researchs" class="sort-holder">
<%= render :partial => 'research', :collection => @researchs %>
</tbody>
</table>