1
0
Fork 0
dokkan-data-rails/app/views/admin/cards/index.html.slim

32 lines
861 B
Text
Raw Normal View History

2015-10-08 15:18:21 -04:00
- if policy(:card).new?
.row
.col-md-12
.pull-right
2015-10-09 08:17:29 -04:00
= link_to 'New Card', new_admin_card_path, class: 'btn btn-primary'
2015-10-06 13:55:12 -04:00
.row
.col-md-12
table.table.table-striped.table-hover
thead
tr
th Name
2015-10-08 12:40:31 -04:00
th Title
th Updated
2015-10-06 13:55:12 -04:00
th Actions
tbody
- @cards.each do |card|
tr
td= card.name
2015-10-08 12:40:31 -04:00
td= card.title
td= card.updated_at
2015-10-06 13:55:12 -04:00
td
2015-10-08 15:18:21 -04:00
- if policy(:card).edit?
2015-10-09 08:17:29 -04:00
= link_to glyph('edit', classes: 'control-icon'), edit_admin_card_path(card)
2015-10-08 15:18:21 -04:00
- if policy(:card).destroy?
2015-10-09 08:17:29 -04:00
= link_to glyph('trash', classes: 'control-icon'), admin_card_path(card), method: :delete
2015-10-06 13:55:12 -04:00
2015-10-08 15:18:21 -04:00
- if policy(:card).new?
.row
.col-md-12
2015-10-09 08:17:29 -04:00
= link_to 'New Card', new_admin_card_path, class: 'btn btn-primary'