2018-10-18 04:27:09 +02:00
|
|
|
from flask_table import *
|
|
|
|
|
|
|
|
|
|
class in_out(Table):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
Set up I/O table columns and title information for multiport debugging
|
|
|
|
|
"""
|
2018-10-18 04:27:09 +02:00
|
|
|
typ = Col('Type')
|
|
|
|
|
description = Col('Description')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class in_out_item(object):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
Define table row element for I/O table
|
|
|
|
|
"""
|
2018-10-18 04:27:09 +02:00
|
|
|
def __init__(self, typ, description):
|
|
|
|
|
self.typ = typ
|
|
|
|
|
self.description = description
|