9 lines
357 B
Python
9 lines
357 B
Python
from django.db import models
|
|
from django.utils import timezone
|
|
|
|
class HistoryRadio(models.Model):
|
|
description = models.CharField('Описание события кратко', max_length=50)
|
|
date = models.DateField('Дата события', default=timezone.now, null=True)
|
|
def __str__(self):
|
|
return f"{self.date}: {self.description}"
|