project/kiwipycon/proceedings/models.py
changeset 84 d01c62c2a628
child 87 1ec579a679e4
equal deleted inserted replaced
83:c6557935bc28 84:d01c62c2a628
       
     1 # -*- coding: utf-8 -*-
       
     2 from __future__ import absolute_import
       
     3 
       
     4 from django.db import models
       
     5 from django.contrib.auth.models import User
       
     6 
       
     7 
       
     8 class Paper(models.Model):
       
     9     """Data model for storing proceedings paper.
       
    10     """
       
    11 
       
    12     title = models.CharField(max_length=200)
       
    13     abstract = models.TextField()
       
    14     body = models.TextField()