UEWBot / dipvis

Django-based visualiser for tournaments for the boardgame Diplomacy
GNU General Public License v3.0
7 stars 4 forks source link

List ongoing tournaments before completed ones #302

Open UEWBot opened 1 month ago

UEWBot commented 1 month ago

The tournaments list is current ordered by starting date. That means that ongoing multi-weekend tournaments that are finished get listed after single-weekend tournaments that started and finished while the former was ongoing. It makes more sense to sort ongoing before completed and then by date.

Of course we can't do that by changing Tournament.Meta.ordering, because is_finished() is a method, not an attribute.