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

Update translations

This commit is contained in:
Yohann D'ANELLO
2020-03-28 02:08:29 +01:00
parent a8422411bc
commit 08ed694438
3 changed files with 548 additions and 367 deletions

View File

@ -55,15 +55,15 @@ class GuestTable(tables.Table):
class EntryTable(tables.Table):
type = tables.Column()
type = tables.Column(verbose_name=_("Type"))
last_name = tables.Column()
last_name = tables.Column(verbose_name=_("Last name"))
first_name = tables.Column()
first_name = tables.Column(verbose_name=_("First name"))
note_name = tables.Column()
note_name = tables.Column(verbose_name=_("Note"))
balance = tables.Column()
balance = tables.Column(verbose_name=_("Balance"))
def render_note_name(self, value, record):
if hasattr(record, 'username'):