<% if @daily_notes.empty? %> <%= t('views.index.no_record_found')%> <% else %> <% @daily_notes.each do |daily_note| %> <%= daily_note.unity %> <%= daily_note.classroom %> <%= daily_note.discipline %> <%= daily_note.avaliation %> <%= daily_note.current_step %> <%= daily_note.status_humanize %> <%= link_to t('views.index.edit'), edit_daily_note_path(daily_note), class: 'btn btn-success' %> <%= link_to t('views.index.delete'), daily_note_path(daily_note), class: 'btn btn-danger', method: 'delete', data: { confirm: t('views.index.confirm_deletion') } %> <% end %> <% end %>