I played for a while and this is my result:

StaffSeq = tuple((str(i),)*2 for i in \ 
auth.models.User.objects.filter(is_staff=True))

(..)
        models.CharField(max_length=30,choices=StaffSeq)

Are there better ways to do this?

Mark

On Sunday 24 August 2008 13:18:42 Mark wrote:
> This class is only for the admin page. In the following model I'd like to
> make owned_by a dropdown box showing staff users.
>
>
> from django.db import models
> from django.contrib import admin
> from django.contrib import auth
>
> class Car(models.Model):
>       brand = models.CharField(max_length=20)
>       color = models.CharField(max_length=10)
>       owned_by = models.ForeignKey(something)
>
> How can I achieve this?
>
> 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" 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-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to