#4477: [newforms-admin] Models on index.html aren't grouped by app_label
----------------------------------------------+-----------------------------
Reporter: Honza Král <[EMAIL PROTECTED]> | Owner: adrian
Status: new | Component: Admin interface
Version: other branch | Keywords: newforms admin
app_label
Stage: Unreviewed | Has_patch: 1
----------------------------------------------+-----------------------------
When I register several models from one application to {{{
django.contrib.admin.site }}} they don't appear in the same table on
admin's index page. It looks like this:
{{{
+--------------------------+
| MyApp |
+--------------------------+
| MyModel1 |
+--------------------------+
+--------------------------+
| OtherApp |
+--------------------------+
| NotMyModel |
+--------------------------+
+--------------------------+
| MyApp |
+--------------------------+
| MyModel2 |
+--------------------------+
}}}
where it should imho be:
{{{
+--------------------------+
| MyApp |
+--------------------------+
| MyModel1 |
| MyModel2 |
+--------------------------+
+--------------------------+
| OtherApp |
+--------------------------+
| NotMyModel |
+--------------------------+
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/4477>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---