thirteen-tien-len/app/views/tables/index.html.haml
2015-12-28 23:15:59 -08:00

16 lines
425 B
Plaintext

%h1 Listing tables
.button= link_to 'New Table', new_table_path
.tables-container
- @tables.each do |table|
.table
.title= link_to table.title, table
.player-count= "#{table.users.count} Players"
- if policy(table).update?
.owner-controls
= link_to 'Edit', edit_table_path(table)
= link_to 'Destroy', table, :method => :delete, :data => { :confirm => 'Are you sure?' }