joshpelkey / cfbets

College football betting web app, built with django/bootstrap/jquery
Apache License 2.0
15 stars 8 forks source link

Change default sort order for completed bets #29

Closed joshpelkey closed 6 years ago

joshpelkey commented 7 years ago

Should update to sort by modified on (the prop, since this is what gets marked).

joshpelkey commented 7 years ago

Probably update this: all_accepted_bets = AcceptedBet.objects.filter(accepted_prop__won_bet__isnull=False).order_by('-created_on')

to: all_accepted_bets = AcceptedBet.objects.filter(accepted_prop__won_betisnull=False).order_by('-accepted_propmodified_on')