Basic feature implemented, very basic poc
This commit is contained in:
parent
216089a3e7
commit
48c0067076
118 changed files with 2113 additions and 20 deletions
22
app/views/checks/_check.html.erb
Normal file
22
app/views/checks/_check.html.erb
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<div id="<%= dom_id check %>">
|
||||
<p>
|
||||
<strong><%= Check.human_attribute_name(:position) %>:</strong>
|
||||
<%= check.position %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong><%= Check.human_attribute_name(:name) %>:</strong>
|
||||
<%= check.name %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong><%= Check.human_attribute_name(:success_criterion) %>:</strong>
|
||||
<%= check.success_criterion %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong><%= Check.human_attribute_name(:level) %>:</strong>
|
||||
<%= check.level %>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue