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

Display real user name in the Soge credits list/detail

This commit is contained in:
Yohann D'ANELLO
2020-10-08 10:36:23 +02:00
parent 3eced33082
commit bf29efda0a
2 changed files with 9 additions and 3 deletions

View File

@ -147,4 +147,4 @@ class SogeCreditTable(tables.Table):
class Meta:
model = SogeCredit
fields = ('user', 'amount', 'valid', )
fields = ('user', 'user__last_name', 'user__first_name', 'amount', 'valid', )