2018-10-12 01:03:05 +02:00
|
|
|
from flask_table import *
|
|
|
|
|
|
|
|
|
|
class deliverables(Table):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
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):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
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
|