18 lines
422 B
Python
18 lines
422 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Post(models.Model):
|
|
title = models.CharField('Tytuł', max_length=250)
|
|
content = models.TextField('Treść')
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|
|
class Meta:
|
|
verbose_name = 'Ogłoszenie'
|
|
verbose_name_plural = 'Ogłoszenia'
|
|
ordering = ['-created_at']
|