There is such a model:
class NewsContent(models.Model): title = models.CharField(_('Title'), max_length=255) author = models.ForeignKey(User, blank=True, null=True, verbose_name = _('Author')) content = models.TextField(_('Content'))
It is necessary that in the django admin area when creating new news content, the current user is selected by default as the author.