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

30 lines
829 B
Text
Raw Normal View History

2015-10-08 15:18:21 -04:00
- if policy(:rarity).new?
.row
.col-md-12
.pull-right
= link_to 'New Rarity', new_rarity_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 Description
th Actions
tbody
- @rarities.each do |rarity|
tr
td= rarity.name
td= rarity.description
td
2015-10-08 15:18:21 -04:00
- if policy(:rarity).edit?
= link_to glyph('edit', classes: 'control-icon'), edit_rarity_path(rarity)
- if policy(:rarity).destroy?
= link_to glyph('trash', classes: 'control-icon'), rarity_path(rarity), method: :delete
2015-10-06 13:55:12 -04:00
2015-10-08 15:18:21 -04:00
- if policy(:rarity).new?
.row
.col-md-12
= link_to 'New Rarity', new_rarity_path, class: 'btn btn-primary'