Merge branch 'master' of stigma:platforma
[redakcja.git] / apps / explorer / models.py
index 5181e16..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):    
@@ -100,3 +100,6 @@ class GalleryForDocument(models.Model):
 
     # document associated with the gallery
     document = models.CharField(max_length=255)
+
+    def __unicode__(self):
+        return u"%s:%s" % (self.subpath, self.document)
\ No newline at end of file