2021-01-06 12:57:03 +01:00
{% include 'buttons.html' ignore missing %}
2021-03-01 13:36:27 +01:00
< fieldset style = "background-color:#e0e0e0e0;margin-left:15px;margin-right:15px;font-size:14px;border-top-left-radius: 10px; border-top-right-radius: 10px;border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;" >
2021-01-06 12:57:03 +01:00
< legend >< b >< font color = "#000" > .: OpenBridge status :. </ font ></ b ></ legend >
{% if _table['OPENBRIDGES']|length >0 %}
< table style = "table-layout:fixed;width:100%; font: 10pt arial, sans-serif; margin-top:5px; margin-bottom:5px;" >
< tr style = "width:100%; font: 10pt arial, sans-serif;{{ themec }}" >
< th style = 'width: 12%' > OpenBridge< br > Systems</ th >
< th style = 'width: 12%' > Network ID</ th >
< th style = 'width: 70%;' > Active Calls</ th >
</ tr >
{% for _openbridge in _table['OPENBRIDGES'] %}
< tr style = "background-color:#f9f9f9f9;" >
< td style = "font-weight:bold; padding-left: 20px; text-align:left;" > {{ _openbridge}} </ td >
< td >< div style = "font: 9pt arial, sans-serif;margin-top:3px;margin-bottom:3px;" > Net ID: < span style = "font: 9pt arial, sans-serif;font-weight:bold;" > {{ _table['OPENBRIDGES'][_openbridge]['NETWORK_ID'] }}</ td >
< td style = "background-color:#f9f9f9f9; font: 9pt arial, sans-serif; font-weight: 600; color:#464646;" > {% for entry in _table['OPENBRIDGES'][_openbridge]['STREAMS'] %}[< span style = "{{ 'color:#008000;' if _table['OPENBRIDGES'][_openbridge]['STREAMS'][entry][0] == 'RX' else 'color:red;' }}" > {{ _table['OPENBRIDGES'][_openbridge]['STREAMS'][entry][0] }}</ span > : < font color = #0065ff > {{ _table['OPENBRIDGES'][_openbridge]['STREAMS'][entry][1] }}</ font > >> < font color = #b5651d > {{ _table['OPENBRIDGES'][_openbridge]['STREAMS'][entry][2] }}</ font > ] {% endfor %}</ td >
</ tr >
{% endfor %}
</ table >
{% else %}
< table style = 'width:100%; font: 13pt arial, sans-serif' >
< tr style = 'border:none; background-color:#f9f9f9f9;' >
2021-02-21 09:55:44 +01:00
< td style = 'border:none;height:60px;' >< font color = brown >< b >< center > Waiting for data from the DMR server ... or not defined on DMR server</ center ></ b ></ td >
2021-01-06 12:57:03 +01:00
</ tr >
</ table >
{% endif %}
</ fieldset >