Begin working on the QueryStatus application for the requestor to monitor user responses
This commit is contained in:
parent
47b68621c1
commit
a242101b5b
6 changed files with 154 additions and 0 deletions
21
templates/QueryStatus/users.hbs
Normal file
21
templates/QueryStatus/users.hbs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<ul>
|
||||
{{#each users as | user |}}
|
||||
<li>
|
||||
{{ user.name }}
|
||||
{{#if user.answers}}
|
||||
<div class="chip-list">
|
||||
{{#each user.answers as | answer |}}
|
||||
<span class="chip">
|
||||
{{ @key }}
|
||||
<span class="value">
|
||||
{{ answer }}
|
||||
</span>
|
||||
</span>
|
||||
{{/each}}
|
||||
</div>
|
||||
{{else}}
|
||||
<span class="loader"></span>
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
Loading…
Add table
Add a link
Reference in a new issue