Begin working on the QueryStatus application for the requestor to monitor user responses

This commit is contained in:
Oliver 2025-11-09 00:31:04 -07:00
parent 47b68621c1
commit a242101b5b
6 changed files with 154 additions and 0 deletions

View 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>