Luke Plant wrote:
> The 'Django' way of handling this is to split your models into different 
> 'apps'.  They then get their own division automatically.  Like you I 
> have a lot of models in one app (about 20), and splitting them up 
> doesn't make much sense since they logically belong together, and my 
> urlconf would be much harder if they were split up.
>
> For me, simply sorting the list of models alphabetically would be a 
> sufficient solution to this problem.  I had a patch for this in the 
> past but it got lost.  I'll have another go -- I don't know if it would 
> be good enough for your situation, but it would be a start.
>
> Luke
>
>   
That approach might work.  I still think it would be nice to have a 
little more flexibility in the admin interface.  I do like the idea of 
some sort of sorting capability.  Sorting alphabetically could be the 
default, but we could also add a sort order meta field for those that 
would like a custom order.  For instance, I might want to make sure I 
have something "logical" like:
- Products
- Customers
- Orders

Just a thought.

-Chris


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to