Re: adding html5 field attributes to a model form

2012-04-09 Thread BlackKnight
Custom widget would be enough in your forms.py from django.forms import Input class EmailInput(Input): input_type = 'email' class AddressForm(ModelForm): contact_email = forms.CharField(widget=EmailInput) On Apr 9, 11:37 pm, Lee Hinde wrote: > Thanks. I'll check that out. > > On Apr

Re: django.core.handlers.wsgi not found

2012-02-05 Thread BlackKnight
http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives have you added this in apache conf, SetHandler wsgi-script Options ExecCGI On Feb 5, 5:53 am, "larry.mart...@gmail.com" wrote: > I am trying to deploy my django app on a newly setup CentOS box. I > have successfully deployed it o