Quoted from the very bottom of Tutorial 2: """Customize the admin index page
On a similar note, you might want to customize the look and feel of the Django admin index page. By default, it displays all the apps in INSTALLED_APPS that have been registered with the admin application, in alphabetical order. You may want to make significant changes to the layout. After all, the index is probably the most important page of the admin, and it should be easy to use. The template to customize is admin/index.html. (Do the same as with admin/base_site.html in the previous section -- copy it from the default directory to your custom template directory.) Edit the file, and you'll see it uses a template variable called app_list. That variable contains every installed Django app. Instead of using that, you can hard-code links to object-specific admin pages in whatever way you think is best.""" http://docs.djangoproject.com/en/dev/intro/tutorial02/#customize-the-admin-index-page It looks like the simplest thing would be to hard code links, though you may be able to use an *if* to filter out various apps that you don't want to see. -E On Oct 13, 11:00 am, Vokial <[EMAIL PROTECTED]> wrote: > Hello! > > Is there a way to change the order of the applications shown in the > admin page? If i'm not wrong it used to be the order in which the > applications were written in the INSTALLED_APPS but now it seems to > follow the alphabetic order.. > > I'd like to give an arbitrary order, if it's possible... > > Thank you! > > Bye! > > PS: again sorry for grammar mistakes, i'm not english :) i do my > best :P --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---