2012-10-15 21:19:17 +02:00
|
|
|
- if Ordergroup.count > 20
|
|
|
|
= items_per_page
|
|
|
|
= pagination_links_remote @ordergroups
|
|
|
|
%table.table.table-striped
|
2009-01-14 12:46:01 +01:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
2009-02-02 16:35:43 +01:00
|
|
|
%th Kontakt
|
|
|
|
%th Adresse
|
2009-01-14 12:46:01 +01:00
|
|
|
%th Mitglieder
|
2012-10-15 21:19:17 +02:00
|
|
|
%th Aktionen
|
2009-01-14 12:46:01 +01:00
|
|
|
%tbody
|
|
|
|
- for ordergroup in @ordergroups
|
|
|
|
%tr{:class => cycle('even','odd', :name => 'groups')}
|
|
|
|
%td= link_to ordergroup.name, [:admin, ordergroup]
|
2009-02-02 16:35:43 +01:00
|
|
|
%td= ordergroup.contact
|
|
|
|
%td= link_to_gmaps ordergroup.contact_address
|
2009-01-14 12:46:01 +01:00
|
|
|
%td= ordergroup.users.size
|
|
|
|
%td
|
2012-10-15 21:19:17 +02:00
|
|
|
= link_to "Bearbeiten", edit_admin_ordergroup_path(ordergroup), class: 'btn btn-mini'
|
|
|
|
= link_to "Löschen", [:admin, ordergroup], :confirm => "Willst du #{ordergroup.name} wirklich löschen?",
|
|
|
|
:method => :delete, class: 'btn btn-mini btn-danger'
|