6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】f.labelのラベル名の変更

Posted at

問題

新規登録画面のユーザー名を入力する項目だけが英語表記の「name」になってしまっているので、日本語表記の「ユーザー名」に変更したい。

解決法

app/views/devise/registrations/new.html.haml
# before
.field-label
  = f.label :name
  
# after
.field-label
  = f.label :name, "ユーザー名"

どう変わったか

before

スクリーンショット 2020-10-02 午後4.24.12.png

after

スクリーンショット 2020-10-02 午後4.23.10.png

参考記事

form.labelの使用方法

6
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?