You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Django 1.3.1 with PostgreSQL, setup a very simple example like this :
dubious = BitField(flags=DOUBT_FLAGS, verbose_name=_(u"Dubious categories"))
Whether I use the stock field in Admin forms or regular forms, or I force the form field to be a BitFormField, Django always shows a TextInput. (In the admin, submitting raises an AttributeError in types.py, line 171) I've come to think there might be a bug, or a misuse of the app.
The text was updated successfully, but these errors were encountered:
I'm using Django 1.3.1 with PostgreSQL, setup a very simple example like this :
dubious = BitField(flags=DOUBT_FLAGS, verbose_name=_(u"Dubious categories"))
Whether I use the stock field in Admin forms or regular forms, or I force the form field to be a BitFormField, Django always shows a TextInput. (In the admin, submitting raises an AttributeError in types.py, line 171) I've come to think there might be a bug, or a misuse of the app.
The text was updated successfully, but these errors were encountered: