Ticket #1585: index.2.diff

File index.2.diff, 589 bytes (added by James Bennett, 18 years ago)

Patch where i18n will actually work

  • index.html

     
    1313{% if app_list %}
    1414    {% for app in app_list %}
    1515        <div class="module">
    16         <table summary="{% blocktrans %}Models available in {{ app.name }} application.{% endblocktrans %}">
     16        <table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}">
    1717        {% for model in app.models %}
    1818          <caption>{{ app.name }}</caption>
    1919            <tr>
Back to Top