I have the following table set up using flask-table
class ScreeningTable(Table):
timedate = DatetimeCol('Date & Time', datetime_format='YYYY-MM-d, HH:MM')
tickets = Col('Tickets available')
I want to add a ButtonCol
using a screeningID
variable, where every button has the same text, but sends the user to a link based on the value of screeningID
for each line of the table. How do I do that?