{% extends "podcast_analyzer/app_base.html" %} {% load i18n %} {% block extratitle %}{{ podcast.title }} - {% endblock %} {% block breadcrumbs %}
  • {% translate "Podcasts" %}
  • {{ podcast.title }}
  • {% endblock %} {% block extra_controls %}
    {% translate "See episodes" %}
    {% translate "Edit" %}
    {% endblock %} {% block content %}

    {{ podcast.title }}

    {% if podcast.podcast_cached_cover_art %} Podcast logo art {% endif %}

    {{ podcast.description|striptags|urlize }}

    {% translate "Metadata" %}

    {% translate "Author" %}
    {{ podcast.author }}
    {% translate "Type" %}
    {{ podcast.itunes_feed_type }}
    {% translate "Explicit" %}
    {{ podcast.itunes_explicit|yesno:"Yes,No"}} {{ podcast.itunes_explicit|yesno:"✅,🚫"}}
    {% translate "Language" %}
    {{ podcast.language }}
    {% translate "Actively releasing?" %}
    {{ podcast.dormant|yesno:"No,Yes"}} {{ podcast.dormant|yesno:"🚫,✅"}}
    {% translate "Site URL" %}
    {{ podcast.site_url|urlize }}
    {% translate "Funding URL" %}
    {{ podcast.funding_url|urlize|default_if_none:"-"}}
    {% translate "iTunes Categories" %}
      {% for category in podcast.itunes_categories.all %}
    • {% if category.parent_category %}{{ category.parent_category.name }} - {% endif %}{{ category.name }}
    • {% empty %}
    • {% translate "No categories detected yet." %}
    • {% endfor %}
    {% translate "Tags" %}
    {% for tag in podcast.tags.all %}{{ tag.name }}{% if not forloop.last %}, {% endif %}{% empty %}{% translate "No tags found." %}{% endfor %}
    {% translate "Generator" %}
    {{ podcast.generator|urlize|default_if_none:"Unknown" }}
    {% translate "Probable Feed Host" %}
    {{ podcast.probable_feed_host }}
    {% translate "Uses 3rd party download tracking?" %}
    {{ podcast.feed_contains_tracking_data|yesno:"Yes,No"}} {{ podcast.feed_contains_tracking_data|yesno:"✅,🚫"}}
    {% translate "Last release date" %}
    {{ podcast.last_release_date|date:"r"}}

    {% translate "Statistics" %}

    {% translate "Release Frequency" %}

    {{ podcast.get_release_frequency_display }}

    {% translate "Seasons" %}

    {{ podcast.seasons.count|default_if_none:"N/A" }}

    {% translate "Episodes" %}

    {{ podcast.total_episodes }}

    {% translate "Median episode length" %}

    {{ podcast.median_episode_duration_timedelta }}

    {% translate "Total duration" %}

    {{ podcast.total_duration_timedelta }}

    {% if podcast.seasons.exists %} {% for season in podcast.seasons.all %} {% endfor %}
    {% translate "Seasons" %} {% translate "Episodes" %}
    {% translate "Season" %} {{ season.season_number }} {{ season.episodes.count }}
    {% translate "Total" %} {{ podcast.episodes.count }}
    {% endif %}

    {% translate "Analysis Groups" %}

    {% translate "Belongs to the following analysis groups:" %}

    {% translate "Edit" %}
    {% translate "Delete podcast" %}
    {% endblock %}