i have listed my _form.html.erb file below what i would like to do is change the text on the submit button i know how to do it in html but not shure how to do it in Rails 3<
Just in case, I was trying with this scenario:
f.submit t('conf.begin') class: 'btn btn-outline btn-success'
But it was not working, the solution was with a comma before the class (it was not obvious at the begining for me):
f.submit t('conf.begin'), class: 'btn btn-outline btn-success'
Cheers