{% extends "podcast_analyzer/app_base.html" %} {% load i18n %} {% block extratitle %}{% blocktranslate with title=episode.title %}Delete {{ title }}?{% endblocktranslate %} - {{ podcast.title }}{% endblock %} {% block breadcrumbs %}
  • {% translate "Podcasts" %}
  • {{ podcast.title }}
  • {% translate "Episodes" %}
  • {{ episode.title }}
  • {% translate "Delete" %}
  • {% endblock %} {% block content %}

    {% blocktranslate with title=episode.title %}Delete {{ title }}?{% endblocktranslate %}

    {% translate "Are you sure you want to delete this episode?" %}

    {% blocktranslate count counter=episode.analysis_group.count %} It will also disassociate this episode with one analysis group. {% plural %} It will also disassociate this episode with {{ counter }} analysis groups. {% endblocktranslate %}

    {% csrf_token %} {{ form }}
    {% translate "Nevermind! Take me back." %}
    {% endblock %}