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 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 -~----------~----~----~----~------~----~------~--~---