style
[redakcja.git] / apps / catalogue / models / template.py
index f8439df..f4056fc 100644 (file)
@@ -1,11 +1,14 @@
+# -*- coding: utf-8 -*-
 from django.db import models
 
 
 class Template(models.Model):
     """ Template of a document or its part """
-    
+
     name = models.CharField(max_length=255)
     content = models.TextField()
+    is_main = models.BooleanField()
+    is_partial = models.BooleanField()
 
     class Meta:
         app_label = 'catalogue'