class UserCustomer(models.Model):
user = models.ForeignKey(User)
customer = models.ForeignKey(CustomerProfile)
In admin interface, while adding a new record, is it possible to restrict(remove) the 'user' in user drop down, if that user is already associated with any customer?