Hi all,

I am new to django/python world.!!

I am halfway in learning python , as of now seems quite easy :)

Well I got some questions to ask:

    What is the stand of Django/Python on 64 -bit & multi core
processors ...?

Support of Ajax/flex in django/python..!

PS: I will forward this to python mailing list also :-)

Thanks,
Santosh.



-----Original Message-----
From: django-users@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Benedict Verheyen
Sent: Thursday, October 12, 2006 3:34 PM
To: django-users@googlegroups.com
Subject: Re: limit choices of records of a ForeignKey field


Benedict Verheyen schreef:

<snip>

I found a solution in the "limited_choices_to" argument of the
ForeignKey function.
I get the results i want by specifiying this:
patient = models.ForeignKey(Patient, null=False, limit_choices_to =
{'actief':True})
instead of
patient = models.ForeignKey(Patient, null=False )

For my lists, i use a view so i can do this to get there:
   #p = Patient.objects.all().order_by('-opnamenr')
   p = Patient.objects.filter(actief=True).order_by('-opnamenr')

So it all works.
But i'm interested in other ways of getting this kind of filtering.

Is it possible to do this by making a custom filter or a custom
templatetag ?
I haven't made a custom filter of template tag yet or didn't find the
need for one until i encountered this problem. It looks like a good
candidate for a tag/filter.

Regards,
Benedict




**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely 
for the use of the addressee(s). If you are not the intended recipient, please 
notify the sender by e-mail and delete the original message. Further, you are 
not to copy, disclose, or distribute this e-mail or its contents to any other 
person and any such actions are unlawful. This e-mail may contain viruses. 
Infosys has taken every reasonable precaution to minimize this risk, but is not 
liable for any damage you may sustain as a result of any virus in this e-mail. 
You should carry out your own virus checks before opening the e-mail or 
attachment. Infosys reserves the right to monitor and review the content of all 
messages sent to or from this e-mail address. Messages sent to or from this 
e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***

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

Reply via email to