<% if @test_settings.empty? %>
| <%= t('views.index.no_record_found')%> |
<% else %>
<% @test_settings.each do |test_setting| %>
| <%= test_setting.exam_setting_type_humanize %> |
<%= test_setting.year %> |
<%= test_setting.decorator.unities_labels %> |
<%= test_setting.school_term_humanize %> |
<%= test_setting.maximum_score %> |
<%= test_setting.number_of_decimal_places %> |
<%= test_setting.average_calculation_type_humanize %> |
<%= link_to t('views.index.edit'), edit_test_setting_path(test_setting),
class: "btn btn-success" %>
<%= link_to t('views.index.delete'), test_setting_path(test_setting),
class: "btn btn-danger", method: "delete", data: { confirm: t('views.index.confirm') } %>
|
<% end %>
<% end %>