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

28 lines
837 B
Text
Raw Normal View History

2015-10-08 15:18:21 -04:00
- if policy(:character).new?
.row
.col-md-12
.pull-right
2015-10-09 08:17:29 -04:00
= link_to 'New Character', new_admin_character_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
th Actions
tbody
- @characters.each do |character|
tr
td= character.name
td
2015-10-08 15:18:21 -04:00
- if policy(:character).edit?
2015-10-09 08:17:29 -04:00
= link_to glyph('edit', classes: 'control-icon'), edit_admin_character_path(character)
2015-10-08 15:18:21 -04:00
- if policy(:character).destroy?
2015-10-09 08:17:29 -04:00
= link_to glyph('trash', classes: 'control-icon'), admin_character_path(character), method: :delete
2015-10-06 13:55:12 -04:00
2015-10-08 15:18:21 -04:00
- if policy(:character).new?
.row
.col-md-12
2015-10-09 08:17:29 -04:00
= link_to 'New Character', new_admin_character_path, class: 'btn btn-primary'