mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 23:04:49 +00:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
module FormsHelper
|
|
def form_field_tag(&)
|
|
tag.div class: "form-field", &
|
|
end
|
|
|
|
def currency_dropdown(f: nil, options: [])
|
|
render partial: "shared/currency_dropdown", locals: { f: f, options: options }
|
|
end
|
|
end
|