2024-07-16 20:22:59 +02:00
|
|
|
<div id="<%= dom_id checklist %>">
|
|
|
|
|
<p>
|
|
|
|
|
<strong>Code:</strong>
|
|
|
|
|
<%= checklist.code %>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<strong>Name:</strong>
|
|
|
|
|
<%= checklist.name %>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
2024-07-19 02:29:18 +02:00
|
|
|
<strong>Description (formatted):</strong>
|
|
|
|
|
<%= checklist.description_html %>
|
2024-07-16 20:22:59 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<strong>Checks</strong>
|
|
|
|
|
<ul>
|
|
|
|
|
<% checklist.checklist_entries.each do |entry| %>
|
|
|
|
|
<li>
|
|
|
|
|
<%= entry.position %> <%= entry.check.name %>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
</div>
|