Код: Выделить всё
class Cast(TimeStampedModel):
user = models.ForeignKey(User, unique=True)
count = models.PositiveIntegerField(default=1)
kind = models.CharField(max_length = 7)
def __str__(self):
return(f"{self.kind} || {self.count} || {self.modified.strftime('%x')}")
Подробнее здесь: https://stackoverflow.com/questions/480 ... odel-field
Мобильная версия