1 # -*- coding: utf-8 -*-
3 # This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from django.db import models
9 class Template(models.Model):
10 """ Template of a document or its part """
12 name = models.CharField(max_length=255)
13 content = models.TextField()
14 is_main = models.BooleanField()
15 is_partial = models.BooleanField()
18 app_label = 'catalogue'
20 def __unicode__(self):