RadioSelect Widget : Incorrect/Wrong Mark-up?

2010-02-28 Thread czamb...@gmail.com
It looks like the mark-up used for the RadioSelect widget is incorrect. For example: from django import forms class PersonForm(forms.Form): GENDER_OPTIONS = ( ('M','Male'), ('F','Female'), ) gender = forms.ChoiceField(widget=forms.RadioSelect(),choices=GENDER_OPTION

Re: how to use a customized logging formatter class

2012-10-21 Thread czamb...@gmail.com
As it happens I was looking into this yesterday because my request object includes a couple of attributes that I would like to see listed in the string representation of the request object. Your LOGGING settings needs to have a fomatter entry that looks something like: 'formatters': { 'my_f

Question on the purpose of specific files on a DB Backend(django-odbc)

2011-01-10 Thread czamb...@gmail.com
I am asking the question here because nobody seems to respond to tickets or questions on the django-odbc group. I have found a couple of problems on the django-odbc backend. I fixed one of them, it was using a column alias in the order by clause which is not supported by MSSQL, by making a simple