<%= t("scaffold.pagetitle_index", model: Check.model_name.human(count: 2)) %>
| <%= Check.human_attribute_name(:id) %> |
<%= Check.human_attribute_name(:level) %> |
<%= Check.human_attribute_name(:name) %> |
<%= Check.human_attribute_name(:success_criterion) %> |
<% @checks.each do |check| %>
| <%= check.id %> |
<%= check.level %> |
<%= link_to(check.name, url_for(check)) %> |
<%= link_to(truncate(check.success_criterion), url_for(check)) %> |
<% end %>
<%= link_to t("scaffold.link_new", model: Check.model_name.human), new_check_path %>