foodsoft/app/views/admin/workgroups/show.html.haml

6 lines
402 B
Plaintext
Raw Normal View History

- title "Arbeitsgruppe #{@workgroup.name}"
%section= render :partial => 'shared/group', :locals => { :group => @workgroup }
= link_to 'Gruppe/Mitglieder bearbeiten', edit_admin_workgroup_path(@workgroup), class: 'btn'
= link_to 'Löschen', [:admin, @workgroup], :confirm => 'Bist Du sicher?', :method => :delete, class: 'btn btn-danger'
= link_to_new_message(message_params: {group_id: @workgroup.id})