<% if @teaching_plans.empty? %>
| <%= t('views.index.no_record_found')%> |
<% else %>
<% @teaching_plans.each do |teaching_plan| %>
| <%= teaching_plan.year %> |
<%= teaching_plan.classroom.unity %> |
<%= teaching_plan.classroom %> |
<%= teaching_plan.discipline %> |
<%= teaching_plan.school_term_type %> |
<%= teaching_plan.school_term_type_step_humanize %> |
<%= link_to t('views.index.edit'), edit_teaching_plan_path(teaching_plan), class: "btn btn-success" %>
<%= link_to t('views.index.delete'), teaching_plan_path(teaching_plan), class: "btn btn-danger", method: "delete", data: { confirm: t('views.index.confirm') } %>
|
<% end %>
<% end %>