I have a wtform with a queryselectfield that currently populates with data from the database with all teams:
class PitScoutingForm(FlaskForm):
team = QuerySelectField(
query_factory=lambda: Teams.query.all(), get_label='number')
And the view:
@app.route('/competitions/pit-scouting', methods=['GET', 'POST'])
@login_required
def pit_scouting():
form = PitScoutingForm(request.values)
form.team.choices = [(a.id, a.number) for a in
Teams.query.order_by('number')]
All this works fine. But the team list is growing quite large, and I'd like to limit the teams that show in this field to the currently selected competition, so I'd alter the view to
@app.route('competitions/<int: comp_id>/pit-scouting', methods=['GET', 'POST'])
but I'm not sure how to pass the comp_id from the view to the form so I can filter on the competition id so I only get the teams that are in that competition. I saw this entry but I don't quite understand the solution. Any pointers appreciated.
Thanks for the pointers guys, you led me in a direction that helped. I found another solution that suggested using a plain select field and then loading the choices in init instead like this:
then my view (ignore the sql...sometimes it's easier than sqlalchemy syntax) remains as is wrt setting the choices, with the exception of using the competition data passed to the view.