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/key-value-list-plugin.html

23 lines
447 B
HTML
Raw Normal View History

<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>