Move foodcoop/ordergroups into nwe namespace foodcoop. Made it more restful.
This commit is contained in:
parent
709425855e
commit
1a8026c5a7
8 changed files with 175 additions and 29 deletions
25
app/views/foodcoop/ordergroups/_ordergroups.html.haml
Normal file
25
app/views/foodcoop/ordergroups/_ordergroups.html.haml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
%p
|
||||
%table{:style => "width:100%"}
|
||||
%tr
|
||||
%td
|
||||
= pagination_links_remote @ordergroups, :update => :ordergroups
|
||||
%td{:style => "text-align:right"}
|
||||
- if @total > 20
|
||||
= items_per_page :update => :ordergroups
|
||||
|
||||
%table.list
|
||||
%thead
|
||||
%tr
|
||||
%th Name
|
||||
%th Mitglieder
|
||||
%th zuletzt bestellt
|
||||
|
||||
%tbody
|
||||
- for ordergroup in @ordergroups
|
||||
%tr{:class => cycle('even','odd', :name => 'ordergroup')}
|
||||
%td= link_to h(ordergroup.name), {:controller => 'messages', :action => 'group', :id => ordergroup}, :title => "Bestellgruppe eine Nachricht schicken"
|
||||
%td=h ordergroup.users.collect { |u| u.nick }.join(", ")
|
||||
%td
|
||||
- order = ordergroup.orders.first(:order => 'starts DESC')
|
||||
= order ? format_date(order.starts) : "-"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue