Files
codeocean/app/views/interventions/index.html.slim
2017-03-21 10:31:32 +01:00

15 lines
371 B
Plaintext

h1 = Intervention.model_name.human(count: 2)
.table-responsive
table.table
thead
tr
th = t('activerecord.attributes.intervention.name')
tbody
- @interventions.each do |intervention|
tr
td = intervention.name
td = link_to(t('shared.show'), intervention)
= render('shared/pagination', collection: @interventions)