Changed admin/templates/admin/index.html to make <caption> translatable

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3270 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-04 03:57:07 +00:00
parent 4d29cae467
commit a25fe3b65e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
{% for app in app_list %}
<div class="module">
<table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
<caption>{{ app.name }}</caption>
<caption>{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</caption>
{% for model in app.models %}
<tr>
{% if model.perms.change %}