6 lines
No EOL
318 B
Text
6 lines
No EOL
318 B
Text
- for group in Group.find :all, :conditions => "type != 'Ordergroup'"
|
|
%h4= link_to_function group.name, "Element.toggle('workgroup_#{group.id}')"
|
|
%ul{:style => "display:none"}[group]
|
|
- for user in group.users.find :all, :order => "nick"
|
|
%li= user.nick + " (#{user.ordergroup.name if user.ordergroup})"
|
|
|