blob: acd9667c779eee5cf4a3e5b94d77ce457b85c4dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from django.db import models
from django.contrib.auth.models import User
import re
from archlinux.utils import Stripper
class News(models.Model):
id = models.AutoField(primary_key=True)
author = models.ForeignKey(User)
postdate = models.DateField(auto_now_add=True)
title = models.CharField(maxlength=255)
content = models.TextField()
class Meta:
db_table = 'news'
verbose_name_plural = 'news'
get_latest_by = 'postdate'
ordering = ['-postdate', '-id']
def get_absolute_url(self):
return '/news/%i/' % self.id
|