14 lines
389 B
Python
14 lines
389 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Post(models.Model):
|
|
title = models.CharField(max_length=255)
|
|
content = models.TextField()
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
modified = models.DateTimeField(auto_now=True)
|
|
|
|
def __str__(self):
|
|
return f"{self.title} ({self.content[0:255]}{"..." if len(self.content) > 255 else ""})"
|