Fixed contact form
This commit is contained in:
parent
23d9f513da
commit
f917c20581
@ -217,15 +217,18 @@ module ApplicationHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def url_for_locale(locale, url = nil)
|
def url_for_locale(locale, url = nil)
|
||||||
|
return url unless locale.present?
|
||||||
|
|
||||||
unless url.present?
|
unless url.present?
|
||||||
new_params = params.merge({action: (params[:_original_action] || params[:action])})
|
new_params = params.merge({action: (params[:_original_action] || params[:action])})
|
||||||
new_params.delete(:_original_action)
|
new_params.delete(:_original_action)
|
||||||
|
|
||||||
if Rails.env.development? || Rails.env.test?
|
if Rails.env.development? || Rails.env.test?
|
||||||
url = url_for(new_params.merge({lang: locale.to_s}))
|
return url_for(new_params.merge({lang: locale.to_s}))
|
||||||
else
|
|
||||||
url = url_for(new_params)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
subdomain = Rails.env.preview? ? "preview-#{locale.to_s}" : locale.to_s
|
||||||
|
return url_for(new_params.merge(host: "#{subdomain}.bikebike.org"))
|
||||||
end
|
end
|
||||||
|
|
||||||
return url if Rails.env.development? || Rails.env.test?
|
return url if Rails.env.development? || Rails.env.test?
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
- contact_reason ||= nil
|
- contact_reason ||= nil
|
||||||
- locale ||= nil
|
- locale ||= nil
|
||||||
= form_tag (locale.present? ? contact_send_url : url_for_locale(locale, contact_send_url)), class: 'contact-form' do
|
= form_tag (locale.present? ? contact_send_url : url_for_locale(locale, contact_send_path)), class: 'contact-form' do
|
||||||
= emailfield :email, nil, big: true, required: true unless logged_in?
|
= emailfield :email, nil, big: true, required: true unless logged_in?
|
||||||
- if contact_reason.present?
|
- if contact_reason.present?
|
||||||
= hidden_field_tag :reason, contact_reason
|
= hidden_field_tag :reason, contact_reason
|
||||||
|
@ -290,7 +290,7 @@ ActiveRecord::Schema.define(version: 20160708042511) do
|
|||||||
t.integer "translator_id"
|
t.integer "translator_id"
|
||||||
t.string "key"
|
t.string "key"
|
||||||
t.text "value"
|
t.text "value"
|
||||||
t.date "created_at"
|
t.datetime "created_at"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "translations", force: :cascade do |t|
|
create_table "translations", force: :cascade do |t|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user