blob: e63dff6c01759961ce7cab94bf233406c128cd78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()
|