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

24 lines
646 B
Text
Raw Normal View History

2015-10-06 13:55:12 -04:00
.row
.col-md-12
.pull-right
= link_to 'New Character', new_character_path, class: 'btn btn-primary'
.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
= link_to glyph('edit', classes: 'control-icon'), edit_character_path(character)
= link_to glyph('trash', classes: 'control-icon'), character_path(character), method: :delete
.row
.col-md-12
= link_to 'New Character', new_character_path, class: 'btn btn-primary'