use proper capitalisation for column titles (#22581)

This commit is contained in:
Frédéric Péters 2018-03-16 15:39:04 +01:00
parent 2444be6af6
commit 43666f7ac9
1 changed files with 2 additions and 2 deletions

View File

@ -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