parts/django/tests/regressiontests/syndication/models.py
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 11:20:57 +0530
changeset 307 c6bca38c1cbf
permissions -rw-r--r--
Added buildout stuff and made changes accordingly

from django.db import models

class Entry(models.Model):
    title = models.CharField(max_length=200)
    date = models.DateTimeField()

    class Meta:
        ordering = ('date',)

    def __unicode__(self):
        return self.title

    def get_absolute_url(self):
        return "/blog/%s/" % self.pk


class Article(models.Model):
    title = models.CharField(max_length=200)
    entry = models.ForeignKey(Entry)

    def __unicode__(self):
        return self.title