Better formatting
This commit is contained in:
parent
3b0fa27951
commit
7f343d8ad8
1 changed files with 2 additions and 1 deletions
|
@ -33,4 +33,5 @@ class History(models.Model):
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
history_set = self.history_set.order_by('timestamp')
|
history_set = self.history_set.order_by('timestamp')
|
||||||
return "\n".join(history_set)
|
header = "[History]:\n"
|
||||||
|
return header + "\n".join(history_set)
|
||||||
|
|
Loading…
Reference in a new issue