mirror of
https://github.com/django/django.git
synced 2025-07-04 17:59:13 +00:00
magic-removal: fixed #1585: admin index table summaries should play nice with i18n. Thanks, ubernostrum.
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4a211a410c
commit
c069623008
@ -14,7 +14,7 @@
|
|||||||
{% if app_list %}
|
{% if app_list %}
|
||||||
{% for app in app_list %}
|
{% for app in app_list %}
|
||||||
<div class="module">
|
<div class="module">
|
||||||
<table summary="{% blocktrans %}Models available in {{ app.name }} application.{% endblocktrans %}">
|
<table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
|
||||||
{% for model in app.models %}
|
{% for model in app.models %}
|
||||||
<caption>{{ app.name }}</caption>
|
<caption>{{ app.name }}</caption>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user