project/kiwipycon/proceedings/models.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 14 Jan 2010 15:54:34 +0530
changeset 84 d01c62c2a628
child 87 1ec579a679e4
permissions -rw-r--r--
Added the initial proceedings app files and enabled them in both production and development settings.

# -*- coding: utf-8 -*-
from __future__ import absolute_import

from django.db import models
from django.contrib.auth.models import User


class Paper(models.Model):
    """Data model for storing proceedings paper.
    """

    title = models.CharField(max_length=200)
    abstract = models.TextField()
    body = models.TextField()