5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-07 09:55:46 +00:00
panel/app/views/sites/index.haml

16 lines
393 B
Plaintext
Raw Normal View History

2018-01-29 22:19:10 +00:00
2018-02-05 17:27:12 +00:00
.row
.col
= render 'layouts/breadcrumb', crumbs: [ t('sites.index') ]
.row
.col
%h1= t('sites.title')
%table.table.table-striped.table-condensed
%tbody
- @sites.each do |site|
%tr
%td= link_to site.name, site_path(site)
2018-02-19 20:00:21 +00:00
%td= link_to t('i18n.edit'), site_i18n_edit_path(site)
2018-02-20 17:47:11 +00:00
%td= render 'sites/enqueue', site: site