18 lines
483 B
Plaintext
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)
|