diff options
Diffstat (limited to 'pyblackbird_cc/resources/models.py')
-rw-r--r-- | pyblackbird_cc/resources/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/models.py b/pyblackbird_cc/resources/models.py index 31085c0..f938cb4 100644 --- a/pyblackbird_cc/resources/models.py +++ b/pyblackbird_cc/resources/models.py @@ -152,6 +152,7 @@ class PDFResource(models.Model): file_size = models.IntegerField(null=False) class Meta: + verbose_name_plural = "PDF Resources" unique_together = ("resource", "file_name") def __str__(self): @@ -171,5 +172,8 @@ class PDFPageSnapshot(models.Model): related_name="pdf_page_snapshots", ) + class Meta: + verbose_name_plural = "PDF Page Snapshots" + def __str__(self): return self.name |