foodsoft/app/views/foodcoop/ordergroups/_ordergroups.html.haml
Patrick Gansterer 253512eb51 Add break to ordergroup
In some foodcoops it is possible that ordergroups make a break. During that
they e.g. pay reduced or no membership fees and do not need to do work for
the foodcoop. This new fields make this visible to all members.
2016-03-08 04:38:13 +01:00

24 lines
855 B
Text

- if Ordergroup.count > 20
= items_per_page
= pagination_links_remote @ordergroups
%table.table.table-striped
%thead
%tr
%th= heading_helper Ordergroup, :name
%th= heading_helper Ordergroup, :user_tokens
%th= heading_helper Ordergroup, :break
%th= heading_helper Ordergroup, :last_user_activity
%th= heading_helper Ordergroup, :last_order
%tbody
- for ordergroup in @ordergroups
%tr
%td= ordergroup.name
%td=h ordergroup.users.collect { |u| show_user(u) }.join(", ")
- if ordergroup.break_start? or ordergroup.break_end?
%td= raw t '.break', start: format_date(ordergroup.break_start), end: format_date(ordergroup.break_end)
- else
%td
%td= format_date ordergroup.last_user_activity
%td= format_date ordergroup.last_order.try(:starts)