18 lines
831 B
Plaintext
18 lines
831 B
Plaintext
<% @competitions.each do |competition| %>
|
|
<tr id="<%= dom_id competition %>" class="<%= competition.is_hidden ? "checkHide" : "" %>">
|
|
<td><%= competition.year %></td>
|
|
<td>
|
|
<%= link_to competition.competition_name, OrbitHelper.url_to_plugin_show(competition.to_param,'personal_competition'), target: "blank"%>
|
|
<div class="quick-edit">
|
|
<ul class="nav nav-pills hide">
|
|
<li><%= link_to t('edit'), edit_admin_competition_path(competition) %></li>
|
|
<li><%= link_to t(:delete_), admin_competition_path(id: competition.id), method: :delete, remote: true, data: { confirm: 'Are you sure?' } %></li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
<td><%= competition.awarding_unit %></td>
|
|
<td><%= competition.work_name %></td>
|
|
<td><%= competition.student_name %></td>
|
|
</tr>
|
|
<% end %>
|