Files
openfoodnetwork/app/views/admin/order_cycles/index.html.haml
2015-03-16 12:15:43 +11:00

48 lines
1.2 KiB
Plaintext

= content_for :page_title do
Order Cycles
= content_for :page_actions do
%li#new_order_cycle_link
= button_link_to "New Order Cycle", main_app.new_admin_order_cycle_path, :icon => 'icon-plus', :id => 'admin_new_order_cycle_link'
- if @show_more
%li
= button_link_to "Show less", main_app.admin_order_cycles_path
- else
%li
= button_link_to "Show more", main_app.admin_order_cycles_path(params: { show_more: true })
= form_for @order_cycle_set, :url => main_app.bulk_update_admin_order_cycles_path do |f|
%table.index#listing_order_cycles
%colgroup
%col
%col{'style' => 'width: 20%;'}
%col{'style' => 'width: 20%;'}
- unless order_cycles_simple_index
%col
%col
%col
%col
%col
%col
%col
%thead
%tr
%th Name
%th Open
%th Close
- unless order_cycles_simple_index
%th Supplier
%th Coordinator
%th Distributors
%th Products
%th.actions
%th.actions
%th.actions
%tbody
= f.fields_for :collection do |order_cycle_form|
= render 'admin/order_cycles/row', order_cycle_form: order_cycle_form
= f.submit 'Update'