summaryrefslogtreecommitdiffstats
path: root/news/models.py
blob: b8709b4893b70b7d2b0919a06e4dc66d0170d95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from django.db import models
from django.contrib.auth.models import User
import re

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

# vim: set ts=4 sw=4 et: