|
|
|
@ -81,7 +81,7 @@ class Podcast(models.Model): |
|
|
|
|
|
|
|
title = models.CharField(max_length=255, null=True) |
|
|
|
slug = models.SlugField(allow_unicode=True, unique=True) |
|
|
|
thumbnail = models.ImageField(upload_to='book_thumbnails/', null=True, blank=True, help_text=_('image allowed')) |
|
|
|
thumbnail = models.ImageField(upload_to='podcast_thumbnails/', null=True, blank=True, help_text=_('image allowed')) |
|
|
|
description = models.TextField(null=True) |
|
|
|
|
|
|
|
categories = models.ManyToManyField(PodcastCategory, related_name='podcasts', verbose_name=_('categories'), blank=True) |
|
|
|
|