Re: bootstrap django crispy forms

2016-03-01 Thread jarmovanlenthe
You should use #burton in your CSS, not .burton. You set the css_id, not the css_class to burton. Jarmo On Tue, Mar 1, 2016 at 1:39 AM James Schneider wrote: > On Fri, Feb 26, 2016 at 7:39 AM, wrote: > >> A simple upload button is proving difficult to implement bootstrap and >> css on My a

Re: Model cache problem

2015-06-26 Thread jarmovanlenthe
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. Jarmo On Thu, Jun 25, 2015 at 9:49 PM Vijay Khemlani wrote: >