minor code style
[redakcja.git] / apps / catalogue / models / template.py
index f8439df..dded859 100644 (file)
@@ -3,9 +3,11 @@ 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'