mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-25 03:11:10 +01:00
29 lines
597 B
Handlebars
29 lines
597 B
Handlebars
<html>
|
|
{{> partials/head title=activePlugin.name }}
|
|
|
|
<body>
|
|
{{> partials/prefix}}
|
|
|
|
{{#if (eq "table" pluginResult.type)}}
|
|
<h1>Data</h1>
|
|
{{pluginResult.rowCount}} row(s). <br />
|
|
<br />
|
|
<table>
|
|
<tr>
|
|
{{#each pluginResult.columns}}
|
|
<th>{{this}}</th>
|
|
{{/each}}
|
|
</tr>
|
|
{{#each pluginResult.rows}}
|
|
<tr>
|
|
{{#each this}}
|
|
<td><pre>{{{this}}}</pre></td>
|
|
{{/each}}
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
{{/if}}
|
|
{{> partials/suffix }}
|
|
</body>
|
|
</html>
|