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