website/src/home/models.py

14 lines
336 B
Python
Raw Normal View History

2021-07-10 11:18:24 +02:00
from django.db import models
class new(models.Model):
name = models.CharField(max_length=100)
content = models.TextField()
slug = models.SlugField(max_length=55)
pub_date = models.DateTimeField('Date published')
def __str__(self):
return self.name
# Create your models here.