1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linuxdash_ynh.git synced 2024-09-03 19:36:07 +02:00
linuxdash_ynh/sources/templates/app/multi-line-chart-plugin.html

26 lines
No EOL
623 B
HTML

<div class="plugin">
<top-bar heading="heading" last-updated="lastGet" no-refresh-btn></top-bar>
<div class="plugin-body no-padding">
<canvas class="canvas" width="400" height="200"></canvas>
<table class="metrics-table" border="0">
<tbody>
<tr ng-repeat="metric in metricsArray">
<td>
<div
class="metric-square"
style="display: inline-block; border: 1px solid {{metric.color}}; width: 8px; height: 8px; background: {{metric.color}}">
</div>
</td>
<td>{{ metric.name }}</td>
<td>{{ metric.data }}</td>
</tr>
</tbody>
</table>
</div>
</plugin>