mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 02:06:05 +00:00
14 lines
382 B
Python
14 lines
382 B
Python
from django.db import models
|
|
|
|
|
|
class Article(models.Model):
|
|
title = models.CharField(max_length=255)
|
|
slug = models.SlugField()
|
|
body = models.TextField()
|
|
date = models.DateTimeField(auto_now_add=True)
|
|
thumb = models.ImageField(default="default.png", blank=True)
|
|
published = models.BooleanField(default=False)
|
|
|
|
def __str__(self):
|
|
return self.title
|