django-semanticui-forms
django-semanticui-forms copied to clipboard
Effortlessly style all of your Django forms and form fields with Semantic UI wrappers.
Do you have plans to extend to other elements of semantic ui like buttons or cards?
Dropdown renders but cannot be clicked
Formsets
Will django-semanticui-forms handle formsets? If so, what is the default rendering - a table?
Choice fields throw a UnicodeDecodeError if one of the choices is non-ascii. The reason appears to be in line 49 of [semanticuiforms.py](https://github.com/thetarkus/django-semanticui-forms/blob/master/semanticuiforms/templatetags/semanticui.py) Changing the line from `self.values["field"] = str(FIELDS.get(name, FIELDS.get(None))(self.field,...
The error is : `'CallableChoiceIterator' object does not support indexing`
Field `div` could have `id` allowing easily hooking up some javascript. For example I have field with `id="div_id_expire_date"` then we can hook up calendar with some properties like `minDate` or...
Initial `ChoiceField` value is ignored when it's type equals `boolean`. Works flawlessly with `string` for example `initial="False"` passed.