force 2columns in tables

This commit is contained in:
artus
2018-10-14 20:55:43 +02:00
parent 2f93fa1883
commit 65a31c0a1b
5 changed files with 18 additions and 11 deletions

View File

@@ -136,7 +136,7 @@ class Maraude(models.Model):
return '%(dayname)s %(day)i %(month)s' % {
'dayname': WEEKDAYS[self.date.weekday()][1], # Retrieve text inside tuple
'day': self.date.day,
'month': MONTHS[self.date.month][:3] + ".",
'month': MONTHS[self.date.month],
}
def est_terminee(self):