Hi list,
I just came to django, and to web programming for that matter, so my
question is from a n0b:
I have to models:
class Pacient(models.Model):
name=models.CharField('name', max_length=123)
<snip>
class Exit(models.Model):
pacient=models.ForeignKey(Pacient)
<snip>
How to I get the admin interface to show only the pacients for whom I
have no exit objects.
Rephrase: if I have an Exit object for a Pacient, I don't want that
Pacient object to show up
Thanks!
--
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.