27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
|
%table.table.b-table.gl-table.mt-3{ role: 'table', 'aria-busy': false, 'aria-colcount': 4 }
|
||
|
%colgroup
|
||
|
%col
|
||
|
%col
|
||
|
%col.d-none.d-sm-table-column
|
||
|
%col{ width: 120 }
|
||
|
%thead{ role: 'rowgroup' }
|
||
|
%tr{ role: 'row' }
|
||
|
%th{ role: 'columnheader', scope: 'col', 'aria-colindex': 1 }
|
||
|
%th{ role: 'columnheader', scope: 'col', 'aria-colindex': 2 }= _('Integration')
|
||
|
%th.d-none.d-sm-block{ role: 'columnheader', scope: 'col', 'aria-colindex': 3 }= _('Description')
|
||
|
%th{ role: 'columnheader', scope: 'col', 'aria-colindex': 4 }= _('Last updated')
|
||
|
|
||
|
%tbody{ role: 'rowgroup' }
|
||
|
- integrations.each do |integration|
|
||
|
%tr{ role: 'row' }
|
||
|
%td{ role: 'cell', 'aria-colindex': 1 }
|
||
|
= boolean_to_icon integration.activated?
|
||
|
%td{ role: 'cell', 'aria-colindex': 2 }
|
||
|
= link_to scoped_edit_integration_path(integration) do
|
||
|
%strong= integration.title
|
||
|
%td.d-none.d-sm-block{ role: 'cell', 'aria-colindex': 3 }
|
||
|
= integration.description
|
||
|
%td{ role: 'cell', 'aria-colindex': 4 }
|
||
|
- if integration.updated_at.present?
|
||
|
= time_ago_with_tooltip integration.updated_at
|