11 lines
459 B
Python
11 lines
459 B
Python
from flask_table import Table, Col, LinkCol, ButtonCol
|
|
|
|
class chartVersionTable(Table):
|
|
revision = Col('Chart Revision')
|
|
updated = Col('Updated')
|
|
status = Col('Status')
|
|
chart = Col('Chart Version')
|
|
app_version = Col('Application Version')
|
|
description = Col('Description')
|
|
deploy = ButtonCol('Deploy', 'routes.deployChartRevision', url_kwargs=dict(revision='revision'), button_attrs={"type" : "submit", "class" : "btn btn-danger"})
|