/usr/share/skrooge/html/default/alarm.html is in skrooge-common 2.11.0-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | {% if report.bank_table %}
<table id="table_alarms" class="table">
<tbody>
{% for item in report.alarms %}
<tr>
<td>{{ item.0 }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
|