1 from django.db import models
4 class Template(models.Model):
5 """ Template of a document or its part """
7 name = models.CharField(max_length=255)
8 content = models.TextField()
9 is_main = models.BooleanField()
10 is_partial = models.BooleanField()
13 app_label = 'catalogue'
15 def __unicode__(self):