def show_home(): table_reservations = get_reservations() return render_template( 'index.html', shouts=g.shouts, challenged_players=g.challenged_players, table_reservation=table_reservations[-1] if len(table_reservations) > 0 else None, )
def show_reservations(): reservations = get_reservations() return render_template( 'show_reservations.html', reservations=reservations, )