uchicago-capp-30320 / RouteRangers

Transit planning tool designed to retrieve end user input and also facilitate local transit authorities' decision making.
MIT License
1 stars 1 forks source link

Bug: transit improvements not posting #132

Open lisette-solis opened 2 weeks ago

lisette-solis commented 2 weeks ago

Transit improvement boolean question is not posting correctly.

models.py
   # Page 3:
    satisfied = models.IntegerField(choices=SATISFIED, null=True)
    transit_improvement_service = models.IntegerField(choices=BOOL_CHOICES, null=True)
    transit_improvement_schedule = models.IntegerField(choices=BOOL_CHOICES, null=True)
    transit_improvement_transfers = models.IntegerField(choices=BOOL_CHOICES, null=True)
    transit_improvement_safety = models.IntegerField(choices=BOOL_CHOICES, null=True)

Proposed fix Use map options to integer and implement dropdown in the same way as other questions.