form_for
にラベルを表示したい:
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
これによりラベル「Name」が生成されますが、「Your Name」になります。どうすれば変更できますか?
label
ヘルパーの2番目のパラメーターを使用すると、カスタムテキストを設定できます。
<%= f.label :name, 'Your Name' %>
Ruby on Rails Documentation を使用して、ヘルパーメソッドを検索します。
翻訳ラベル、プレースホルダー、およびボタン ondeviseフォームまたは他のフォーム。
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
<div class="mt-3">
<label class="float-left"> <%= f.label t(:email) %> </label>
<%= f.email_field :email, class: 'form-control', placeholder: t('.emailholder') %>
</div>
<div class="mt-3">
<label class="float-left"> <%= f.label t(:password) %> </label>
<%= f.password_field :password, class: 'form-control', placeholder: t('.passholder') %>
</div>
<div class="button">
<%= f.button t('.signinbtn'), class: "" %>
</div>
<% end %>
ローカルファイル:config/locales/en.yml
en:
activerecord:
....others
#Found in Views/devise/seasions/new <form> <*label*>
email: "Email"
password: "Password"
#Views/devise <form> <placeholder & buttom>
devise: #if your using devise forms
#seasions/new.html.erb
new:
emailholder: "enter email here"
passholder: "enter password"
signinbtn: "SignIn"
....others
Rails 5.1.0では、上記の回答は機能しません。
渡された最初のパラメーターは、カスタマイズされたラベルとして使用できます。
<%= f.label :mobile, "Mobile No:" %>