diff --git a/catalog/podcast/models.py b/catalog/podcast/models.py index 939fc61b..0cfc7aee 100644 --- a/catalog/podcast/models.py +++ b/catalog/podcast/models.py @@ -36,6 +36,13 @@ class Podcast(Item): "official_site", ] + @classmethod + def lookup_id_type_choices(cls): + id_types = [ + IdType.RSS, + ] + return [(i.value, i.label) for i in id_types] + @property def recent_episodes(self): return self.episodes.all().order_by("-pub_date")[:10] diff --git a/catalog/templates/search_sidebar.html b/catalog/templates/search_sidebar.html index a53d685c..4b543218 100644 --- a/catalog/templates/search_sidebar.html +++ b/catalog/templates/search_sidebar.html @@ -4,7 +4,7 @@