Files
openfoodnetwork/app/views/spree/admin/payment_methods/edit.html.haml
cyrillefr e59077e63e Select by default single Hub/Shop option on creation of payment/shipping method
- added a helper
- added mode(new/edit) in payment/shipping views
- updated checkbox creation
- added tests
2019-12-18 10:45:00 +01:00

19 lines
808 B
Plaintext

- content_for :page_title do
= t('.editing_payment_method')
%i.icon-arrow-right
= @payment_method.name
- content_for :page_actions do
%li
= button_link_to t(:new), spree.new_admin_payment_method_path, icon: 'icon-plus'
%li
= button_link_to t('.back_to_payment_methods_list'), spree.admin_payment_methods_path, icon: 'icon-arrow-left'
= render partial: 'spree/shared/error_messages', locals: { target: @payment_method }
= form_for @payment_method, url: admin_payment_method_path(@payment_method) do |f|
%fieldset.no-border-top
= render partial: 'form', locals: { f: f }
.one.column  
= render partial: 'spree/admin/shared/hubs_sidebar', locals: { f: f, klass: :payment_method, mode: :edit }
.clear
.filter-actions.actions
= button t(:update), 'icon-refresh'