mirror of
https://github.com/internetee/registry.git
synced 2025-07-24 03:30:33 +02:00
15 lines
575 B
Text
15 lines
575 B
Text
- content_for :actions do
|
|
= link_to(t(:back_to_invoice), admin_invoice_path(@invoice), class: 'btn btn-default')
|
|
= render 'shared/title', name: t(:forward_invoice)
|
|
|
|
= form_for([:admin, @invoice], url: { action: :forward }, method: :post) do |f|
|
|
.row
|
|
.col-md-4.col-md-offset-4
|
|
= render 'shared/full_errors', object: @invoice
|
|
.form-group
|
|
= f.label :billing_email
|
|
= f.text_field :billing_email, class: 'form-control', autocomplete: 'off'
|
|
|
|
.row
|
|
.col-md-12.text-right
|
|
= button_tag(t(:forward), class: 'btn btn-warning')
|