Verbose feed logging

This commit is contained in:
2019-03-10 10:11:59 +03:00
parent a24ab2dcf0
commit 83d752c1a2
2 changed files with 10 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ class Feed(models.Model):
execute_feed.delay(self.pk)
def __str__(self):
return self.title
return f'#{self.pk} {self.title}'
class Meta:
unique_together = ('config_type', 'config_id')