mirror of
https://github.com/ShaYmez/HBmonitor.git
synced 2025-02-03 09:44:14 -05:00
Add files via upload
New version
This commit is contained in:
parent
8d3007bd68
commit
d1b3648c8e
40
templates/bridge_table.html
Normal file
40
templates/bridge_table.html
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
<fieldset style="margin-left:22px;margin-right:22px;font-size:14px"><legend><b><font color="brown"> Bridge Group Status Tables </font></b></legend>
|
||||
{% for _bridge, _bridge_data in _table.iteritems() %}
|
||||
<table style="width:100%; font: 10pt arial, sans-serif">
|
||||
<colgroup>
|
||||
<col style="width: 10%" />
|
||||
<col style="width: 5%" />
|
||||
<col style="width: 5%" />
|
||||
<col style="width: 10%" />
|
||||
<col style="width: 10%" />
|
||||
<col style="width: 10%" />
|
||||
<col style="width: 10%" />
|
||||
<col style="width: 40%" />
|
||||
</colgroup>
|
||||
<h4>Conference Bridge: {{ _bridge }}</h4>
|
||||
<tr style="width:100%; font: 10pt arial, sans-serif; background-color:#6A7D8E; color:white">
|
||||
<th>System</th>
|
||||
<th>Slot</th>
|
||||
<th>TGID</th>
|
||||
<th>Status</th>
|
||||
<th>Timeout</th>
|
||||
<th>Timeout Action</th>
|
||||
<th>Connect TGIDs</th>
|
||||
<th>Disconnect TGIDs</th>
|
||||
</tr>
|
||||
{% for system, _system_data in _table[_bridge].iteritems() %}
|
||||
<tr>
|
||||
<td>{{ system }}</td>
|
||||
<td>{{ _table[_bridge][system]['TS'] }}</td>
|
||||
<td>{{ _table[_bridge][system]['TGID'] }}</td>
|
||||
<td style="background-color:#{{ _table[_bridge][system]['BGCOLOR'] }}; color:#{{ _table[_bridge][system]['COLOR'] }}">{{ _table[_bridge][system]['ACTIVE'] }}</td>
|
||||
<td>{{ _table[_bridge][system]['EXP_TIME'] }}</td>
|
||||
<td>{{ _table[_bridge][system]['TO_ACTION'] }}</td>
|
||||
<td>{{ _table[_bridge][system]['TRIG_ON'] }}</td>
|
||||
<td>{{ _table[_bridge][system]['TRIG_OFF'] }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endfor %}
|
||||
</fieldset>
|
Loading…
Reference in New Issue
Block a user