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<
When writing in erb
<%= f.submit "your text" %>
when writing in HAML
= f.button :submit, "your text"
In HAML comma should be there after submit otherwise it will throw error.