1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Some table accessors weren't updated

This commit is contained in:
Yohann D'ANELLO
2020-09-01 19:04:35 +02:00
parent 05164636a1
commit d76aa3fec9
4 changed files with 5 additions and 3 deletions

View File

@ -53,7 +53,7 @@ class RightsTable(tables.Table):
'style': 'table-layout: fixed;'
}
template_name = 'django_tables2/bootstrap4.html'
fields = ('user__last_name', 'user.first_name', 'user', 'club', 'roles', )
fields = ('user__last_name', 'user__first_name', 'user', 'club', 'roles', )
model = Membership