Re: django.contrib.auth.views.login customization

2011-02-16 Thread Dean Chester
I would write my own login controller using the Authentication and Login methods. Check out this part of the django docs: http://docs.djangoproject.com/en/1.2/topics/auth/#how-to-log-a-user-in Dean On 16 Feb 2011, at 13:51, galago wrote: > Is it possible, to add some extra validation checks in

Django Form Doesn't Render

2011-02-14 Thread Dean Chester
Hi, I have written a form in forms.py that looks like this: class ContractForm(forms.Form): title = forms.CharField() start_date = forms.DateField() end_date = forms.DateField() description = forms.CharField(widget=forms.Textarea) client = forms.ModelChoiceFi