On 2010-05-21, at 6:19 AM, Reinout van Rees wrote: > Another data point: Plone has a checkbox for that: "do you have many > users/groups?". If True, several screens don't attempt to list all users, do > sorting, etc. Instead search fields are used. > > So: best of both worlds. But there's of course some extra code here and > there with "if LARGE_AMOUNT_OF_USERS... else ...".
In that case for the django admin you specify "raw_id_fields" on your model that has a ForeignKey to users. http://docs.djangoproject.com/en/dev/ref/contrib/admin/#raw-id-fields -- Andy McKay, @andymckay Django Consulting, Training and Support -- You received this message because you are subscribed to the Google Groups "Django developers" 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-developers?hl=en.
