You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
718 B
16 lines
718 B
{% extends "admin/base_site.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
<div class="breadcrumbs">
|
|
<a href="../../../../../">{% trans "Home" %}</a> ›
|
|
<a href="../../../../">{{ app_label|capfirst }}</a> ›
|
|
<a href="../../../">{{ opts.verbose_name_plural|capfirst }}</a> ›
|
|
<a href="../../">{{ object|truncatewords:"18" }}</a> ›
|
|
{% trans 'Delete Translation' %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% blocktrans with object as escaped_object %}Deletion of the {{ language_name }} translation of {{ object_name }} '{{ escaped_object }}' is not allowed, because it is the last available translation of this instance.{% endblocktrans %}</p>
|
|
{% endblock %}
|
|
|