From 43666f7ac95de0e682a1aa7e12af1376527c8a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 16 Mar 2018 15:39:04 +0100 Subject: [PATCH] use proper capitalisation for column titles (#22581) --- fargo/fargo/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fargo/fargo/tables.py b/fargo/fargo/tables.py index 1a3ab42..ab9ef0f 100644 --- a/fargo/fargo/tables.py +++ b/fargo/fargo/tables.py @@ -9,8 +9,8 @@ class DocumentTable(tables.Table): '''Display the list of documents of the user''' size = tables.TemplateColumn(template_code='{{ record.document.content.size|filesizeformat }}', orderable=False, - verbose_name=_('size').title()) - created = tables.DateTimeColumn(verbose_name=_('creation date').title()) + verbose_name=_('Size')) + created = tables.DateTimeColumn(verbose_name=_('Creation Date')) class Meta: model = models.Document -- 2.16.2