1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +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:
Wilson Miner 2006-04-06 17:17:39 +00:00
parent 4a211a410c
commit c069623008

View File

@ -14,7 +14,7 @@
{% if app_list %}
{% for app in app_list %}
<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 %}
<caption>{{ app.name }}</caption>
<tr>