mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +00:00
14 lines
584 B
Plaintext
14 lines
584 B
Plaintext
%h1 Edit Order Cycle
|
|
|
|
= content_for :page_actions do
|
|
%li
|
|
= button_to "Notify producers", main_app.notifications_admin_order_cycle_path, :id => 'admin_notify_producers'
|
|
|
|
- ng_controller = order_cycles_simple_view ? 'AdminSimpleEditOrderCycleCtrl' : 'AdminEditOrderCycleCtrl'
|
|
|
|
= form_for [main_app, :admin, @order_cycle], :url => '', :html => {:class => 'ng order_cycle', 'ng-app' => 'admin.order_cycles', 'ng-controller' => ng_controller, 'ng-submit' => 'submit($event)'} do |f|
|
|
- if order_cycles_simple_view
|
|
= render 'simple_form', f: f
|
|
- else
|
|
= render 'form', f: f
|