show.html.haml revision 7b025f9d9726413eb3f50ca2b39826e7eed816fb
0N/A%h2= @page_title = resource
0N/A
0N/A%ul.actions
0N/A %li= link_to "My Teams", collection_path
0N/A - if can? :edit, resource
0N/A %li= link_to "Edit Users", [resource, :team_users]
0N/A %li= link_to "Rename", edit_resource_path
0N/A %li= link_to "Delete", resource_path, method: :delete, confirm: "Do you really want to remove this team?"
0N/A
0N/A%h3 Users
0N/A
0N/A%ul
0N/A - @team_users.each do |team_user|
0N/A %li
0N/A = team_user.user
0N/A - if team_user.admin?
0N/A (admin)
0N/A