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:
parent
4d29cae467
commit
a25fe3b65e
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue