Files
vikileo-shop/system/comments/models.py
2024-05-10 09:38:31 +03:00

18 lines
616 B
Python

from django.db import models
from django.conf import settings
""" Комментарии основная модель """
class Comment(models.Model):
author = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
content = models.TextField(verbose_name='Комментарий', help_text='Введите комментарий')
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
class Meta:
verbose_name = 'Комментарий'
verbose_name_plural = 'Комментарии'
ordering = ['-created']