<% if @complementary_exams.empty? %>
| <%= t('views.index.no_record_found')%> |
<% else %>
<% @complementary_exams.each do |complementary_exam| %>
| <%= complementary_exam.unity %> |
<%= complementary_exam.classroom %> |
<%= complementary_exam.discipline %> |
<%= complementary_exam.complementary_exam_setting %> |
<%= complementary_exam.step %> |
<%= l(complementary_exam.recorded_at) %> |
<%= link_to t('views.index.edit'),
edit_complementary_exam_path(complementary_exam),
class: 'btn btn-success' %>
<%= link_to t('views.index.delete'),
complementary_exam_path(complementary_exam),
class: 'btn btn-danger', method: 'delete', data: { confirm: t('views.index.confirm_deletion') } %>
|
<% end %>
<% end %>