Editing Django's admin index <div id='module'> tag

Posted by zen on Stack Overflow See other posts from Stack Overflow or by zen
Published on 2010-05-10T19:18:37Z Indexed on 2010/05/10 19:54 UTC
Read the original article Hit count: 897

I am new to the Django framework.

On Django's admin index page I'd like to get rid of the "s" at the end of my model names.

Example:

    <div class="module">
     <table summary="Models available in the my application.">
      <caption><a href="" class="section">My application</a></caption>
        <tr>
            <th scope="row"><a href="model/">Model**s**</a></th>            
             <td><a href="model/add/" class="addlink">Add</a></td>
             <td><a href="model/" class="changelink">Change</a></td>         
        </tr>
     </table>
    </div>

I know of a way to do this but I am really looking for the file I should edit. Where is it and what exactly should I do?

I can't seem to pinpoint where it is coming from.

© Stack Overflow or respective owner

Related posts about django

Related posts about django-admin