Better formatting

This commit is contained in:
Rémi Oudin 2018-02-19 13:58:45 +01:00
parent 3b0fa27951
commit 7f343d8ad8
1 changed files with 2 additions and 1 deletions

View File

@ -33,4 +33,5 @@ class History(models.Model):
def __str__(self):
history_set = self.history_set.order_by('timestamp')
return "\n".join(history_set)
header = "[History]:\n"
return header + "\n".join(history_set)