Skip to content

Commit bcbd290

Browse files
Merge pull request #1567 from IFRCGo/feature/dref-revision-mixins
Fix title appearance in history
2 parents 0f1d7a9 + eaf5456 commit bcbd290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dref/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ def save(self, *args, **kwargs):
659659
super().save(*args, **kwargs)
660660

661661
def __str__(self):
662-
return f'{self.title}{self.status}'
662+
return f'{self.title}{self.created_at.date()}, {self.get_status_display()}'
663663

664664

665665
class DrefFile(models.Model):

0 commit comments

Comments
 (0)