{% extends "admin/base_site.html" %} {% load admin_urls static i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-slug-form{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}
{% if form.errors %}

{% translate "Please correct the error(s) below." %}

{{ form.non_field_errors }} {% endif %}

{% translate "Please note that changing the slug will change all public URLs for the podcast, its episodes, etc." %}

{{ form.slug.errors }} {{ form.slug.label_tag }} {{ form.slug }}

{% blocktranslate with value=form.instance.slug %}Current value: {{ value }}{% endblocktranslate %}

{% endblock %}