mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
22 lines
447 B
HTML
22 lines
447 B
HTML
<plugin
|
|
heading="{{ heading }}"
|
|
last-updated="lastGet"
|
|
on-refresh="getData()"
|
|
info="{{ info }}">
|
|
|
|
<loader ng-if="!tableRows"></loader>
|
|
|
|
<div class="animate" ng-show="tableRows">
|
|
<table class="key-value-list">
|
|
<tbody>
|
|
<tr ng-repeat="(name, value) in tableRows">
|
|
<td><strong>{{ name }}</strong></td>
|
|
<td>{{ value }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<no-data ng-show="emptyResult"></no-data>
|
|
</plugin>
|