Files
codeocean/app/views/external_users/index.html.slim
2015-03-11 16:13:45 +01:00

18 lines
483 B
Plaintext

h1 = ExternalUser.model_name.human(count: 2)
.table-responsive
table.table
thead
tr
th = t('activerecord.attributes.external_user.name')
th = t('activerecord.attributes.external_user.consumer')
th = t('shared.actions')
tbody
- @users.each do |user|
tr
td = user.name
td = link_to(user.consumer, user.consumer)
td = link_to(t('shared.show'), user)
= render('shared/pagination', collection: @users)