mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
26 lines
No EOL
623 B
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> |