OpenRAM/compiler/datasheet/deliverables.py

20 lines
453 B
Python
Raw Normal View History

2018-10-12 01:03:05 +02:00
from flask_table import *
class deliverables(Table):
"""
Set up delivarables table columns and title information
"""
2018-10-12 01:03:05 +02:00
typ = Col('Type')
description = Col('Description')
link = Col('Link')
class deliverables_item(object):
"""
Define deliverables table row elemenent information
"""
2018-10-12 01:03:05 +02:00
def __init__(self, typ, description,link):
self.typ = typ
self.description = description
self.link = link