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
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
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
3 matches
Mail list logo