% if @lessons.blank? %> <%= render partial: '/admin/shared/norecords' %> <% else %>
| <%= t('lesson.table.name') %> | <%= t('lesson.table.description') %> | <%= t('actions') %> |
|---|---|---|
| <%= link_to lesson.name, [:admin, lesson] %> | <%= lesson.description %> | <%= link_to raw(''), edit_admin_lesson_path(lesson), { remote: true, class: 'btn btn-sm btn-info', title: t('edit') } %> <%= link_to raw(''), [:admin, lesson], { remote: true, class: 'btn btn-sm btn-danger', method: :delete, data:{ confirm: t('confirm_delete') }, title: t('delete')} %> |