<%= t("scaffold.pagetitle_index", model: Project.model_name.human(count: 2)) %>
| <%= Project.human_attribute_name(:id) %> |
<%= Project.human_attribute_name(:name) %> |
<% @projects.each do |project| %>
| <%= link_to(project.id, url_for(project)) %> |
<%= link_to(project.name, url_for(project)) %> |
<% end %>
<%= link_to t("scaffold.link_new", model: Project.model_name.human), new_project_path %>