提交 de7c61b0 编写于 作者: A Amit Suryavanshi

Titling the model name in views generated by scaffold.

eg. rails g scaffold UserProfile will have in index.html.erb "Listing User Profiles"
rather than Listing user_profiles.
上级 dccf6da6
<h1>Editing <%= singular_table_name %></h1>
<h1>Editing <%= singular_table_name.titleize %></h1>
<%%= render 'form' %>
......
<h1>Listing <%= plural_table_name %></h1>
<h1>Listing <%= plural_table_name.titleize %></h1>
<table>
<thead>
......
<h1>New <%= singular_table_name %></h1>
<h1>New <%= singular_table_name.titleize %></h1>
<%%= render 'form' %>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册