update admin interface

This commit is contained in:
j3d1 2024-11-23 14:40:13 +01:00
parent a51036d6f2
commit 0cb9b6cd95
4 changed files with 121 additions and 81 deletions

View file

@ -92,7 +92,7 @@ class Comment(models.Model):
timestamp = models.DateTimeField(auto_now_add=True)
def __str__(self):
return str(self.issue_thread) + ' comment #' + str(self.id)
return str(self.item) + ' comment #' + str(self.id)
class Event(models.Model):