From ce40ef6f8ec17314ed2979faba3635c8b8e8781f Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Thu, 14 Jan 2010 15:54:34 +0530 Subject: Added the initial proceedings app files and enabled them in both production and development settings. --- project/kiwipycon/proceedings/models.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 project/kiwipycon/proceedings/models.py (limited to 'project/kiwipycon/proceedings/models.py') diff --git a/project/kiwipycon/proceedings/models.py b/project/kiwipycon/proceedings/models.py new file mode 100644 index 0000000..e63dff6 --- /dev/null +++ b/project/kiwipycon/proceedings/models.py @@ -0,0 +1,14 @@ +# -*- 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() -- cgit