Is there any reason to have app.name inside a blocktrans tag in app_index template from django admin app?
{% for app in app_list %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{% endfor %}
As far as I can see, the result would always be similiar to result of this:
{% for app in app_list %}
{{ app.name }}
{% endfor %}