We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breadcrumbs in 'admin/change_form.html' includes "app_label", which can't be translated:
{% block breadcrumbs %} <div class="breadcrumbs"> <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a> › <a href="../">{{ app_label|capfirst|escape }}</a> › {{ opts.verbose_name|capfirst }} </div> {% endblock %}
I think you should replace it with:
{% firstof opts.app_config.verbose_name app_label|capfirst|escape %}
The text was updated successfully, but these errors were encountered:
I would suggest to create a pull request for this so that the change can be reviewed collectively. Thanks for the note.
Sorry, something went wrong.
I see the verbose_name was added in master, but the most recent version of the django-solo package does not include the change yet. What's up?
verbose_name
master
No branches or pull requests
Breadcrumbs in 'admin/change_form.html' includes "app_label", which can't be translated:
I think you should replace it with:
The text was updated successfully, but these errors were encountered: