Skip to content

Commit

Permalink
magic-removal: fixed #1585: admin index table summaries should play n…
Browse files Browse the repository at this point in the history
…ice with i18n. Thanks, ubernostrum.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2628 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
Wilson Miner committed Apr 6, 2006
1 parent 4a211a4 commit c069623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/templates/admin/index.html
Expand Up @@ -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>
Expand Down

0 comments on commit c069623

Please sign in to comment.