On 06/26/2015 09:21 AM, [email protected] wrote:
I think you've used choices=Apple.objects.all, instead of choices=Apple.objects.all(). With the added parentheses, the 'all()' is evaluated each time the form is loaded. Only using 'all' is once evaluated and then used over and over.
Thanks, it's useful too. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/558D331B.9010902%40gmail.com. For more options, visit https://groups.google.com/d/optout.

