29 lines
459 B
Text
29 lines
459 B
Text
|
|
<div id="<%= dom_id checklist %>">
|
||
|
|
<p>
|
||
|
|
<strong>Code:</strong>
|
||
|
|
<%= checklist.code %>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<strong>Name:</strong>
|
||
|
|
<%= checklist.name %>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<strong>Description:</strong>
|
||
|
|
<%= checklist.description %>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<strong>Checks</strong>
|
||
|
|
<ul>
|
||
|
|
<% checklist.checklist_entries.each do |entry| %>
|
||
|
|
<li>
|
||
|
|
<%= entry.position %> <%= entry.check.name %>
|
||
|
|
</li>
|
||
|
|
<% end %>
|
||
|
|
</ul>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
</div>
|