* design counter on connection board * display time of last update and add reload button * chance `Updated` field to a real button * Provide counter values for the dashboard * change background color ot the top branch - use dark-grey instead of black to reduce the contrast * change color of counter tiles * test proxy connection counter handling * prepare conn-table and notes list building * remove obsolete menue points * store client mode for dashboard * store inverters serial number for the dashboard * store inverters serial number * build connection table for dashboard * add connection table to dashboard * fix responsiveness of the tiles * adapt unit tests * remove test fake code * increase test coverage, remove obsolete if statement
38 lines
1.0 KiB
Django/Jinja
38 lines
1.0 KiB
Django/Jinja
{% macro table_elm(elm, col_class, tag='td') -%}
|
|
{% if elm is mapping %}
|
|
<{{tag}}
|
|
{% if (col_class|length) > 0 or elm.class is defined%}class="{{col_class}} {{elm.class}}"{% endif %}
|
|
{% if elm.colspan is defined %}colspan="{{elm.colspan}}"{% endif %}
|
|
{% if elm.rowspan is defined %}rowspan="{{elm.rowspan}}"{% endif %}
|
|
>{{elm.val}}</{{tag}}>
|
|
{% else %}
|
|
<{{tag}}
|
|
{% if (col_class|length) > 0 %}class="{{col_class}}"{% endif %}
|
|
>{{elm}}</{{tag}}>
|
|
{% endif %}
|
|
{%- endmacro%}
|
|
|
|
<h5>Connections</h5>
|
|
<table class="w3-table w3-striped w3-bordered w3-border w3-hoverable w3-white">
|
|
{% if table.thead is defined%}
|
|
<thead>
|
|
{% for row in table.thead %}
|
|
<tr>
|
|
{% for col in row %}
|
|
{{table_elm(col, table.col_classes[loop.index0], 'th')}}
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</thead>
|
|
{% endif %}
|
|
<tbody>
|
|
{% for row in table.tbody %}
|
|
<tr>
|
|
{% for col in row %}
|
|
{{table_elm(col, table.col_classes[loop.index0])}}
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|