<%= t("scaffold.pagetitle_index", model: ChecklistEntry.model_name.human(count: 2)) %>

<% @checklist_entries.each do |checklist_entry| %> <% end %>
<%= ChecklistEntry.human_attribute_name(:id) %> <%= ChecklistEntry.human_attribute_name(:checklist_id) %> <%= ChecklistEntry.human_attribute_name(:check_id) %> <%= ChecklistEntry.human_attribute_name(:position) %>
<%= link_to(checklist_entry.id, url_for(checklist_entry)) %> <%= link_to(checklist_entry.checklist_id, url_for(checklist_entry)) %> <%= link_to(checklist_entry.check_id, url_for(checklist_entry)) %> <%= link_to(checklist_entry.position, url_for(checklist_entry)) %>
<%= link_to t("scaffold.link_new", model: ChecklistEntry.model_name.human), new_checklist_entry_path %>