Update web_tables.py

Add color to text TX/RX in OpenBridge table
This commit is contained in:
Waldek 2019-07-19 13:18:53 +02:00 committed by GitHub
parent 3b9b2bc524
commit c74abc5028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,7 @@ LOGBUF = deque(100*[''], 100)
RED = 'ff6347'
BLACK = '000000'
GREEN = '90EE90'
GREEN2 = '008000'
BLUE = '0000ff'
ORANGE = 'ff8000'
WHITE = 'ffffff'
@ -425,6 +426,10 @@ def rts_update(p):
CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['DEST'] = ''
if system in CTABLE['OPENBRIDGES']:
if trx == 'RX':
CTABLE['OPENBRIDGES'][system]['COLOR'] = GREEN2
if trx == 'TX':
CTABLE['OPENBRIDGES'][system]['COLOR'] = RED
if action == 'START':
CTABLE['OPENBRIDGES'][system]['STREAMS'][streamId] = (trx, alias_call(sourceSub, subscriber_ids),'TG{}'.format(destination))
if action == 'END':