1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 03:18:27 +02:00

Order tournaments by name

This commit is contained in:
Yohann D'ANELLO
2021-01-22 22:33:48 +01:00
parent f36c36b96e
commit a9f3cb7d3a

View File

@ -74,6 +74,7 @@ class TournamentTable(tables.Table):
}
model = Tournament
fields = ('name', 'date',)
order_by = ('name', )
template_name = 'django_tables2/bootstrap4.html'