Merge branch 'master' of stigma:platforma
[redakcja.git] / apps / explorer / models.py
index a8a8c3b..23acd7f 100644 (file)
@@ -55,12 +55,12 @@ class EditorPanel(models.Model):
     def __unicode__(self):
         return self.display_name
     
-class Book(models.Model):
+class Document(models.Model):
     class Meta:
         permissions = (            
             ("can_share", "Can share documents without pull requests."),
         )
-        abstract=True
+        
     pass
 
 class PullRequest(models.Model):    
@@ -102,4 +102,4 @@ class GalleryForDocument(models.Model):
     document = models.CharField(max_length=255)
 
     def __unicode__(self):
-        return u"%s:%s" % self.subpath, self.document
\ No newline at end of file
+        return u"%s:%s" % (self.subpath, self.document)
\ No newline at end of file