Add the template and styles for the chat notification
This commit is contained in:
parent
db4f57fc90
commit
e79bd4d505
3 changed files with 38 additions and 0 deletions
16
templates/query-response.hbs
Normal file
16
templates/query-response.hbs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{{#if answers}}
|
||||
<table class="taf-query-summary">
|
||||
<tr>
|
||||
<td>Key</td>
|
||||
<td>Value</td>
|
||||
</tr>
|
||||
{{#each answers as | answer |}}
|
||||
<tr>
|
||||
<td>{{ @key }}</td>
|
||||
<td>{{ answer }}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</table>
|
||||
{{else}}
|
||||
No data submitted
|
||||
{{/if}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue