django-materializecss-form
django-materializecss-form copied to clipboard
Materializecss for Django Form
Datepicker for DateTimeField in model form not being rendered properly. #53 implies fix is in v1.1.18. pip install only gets v1.1.17 even though PyPi shows latest version as 1.1.18
As documentation said : https://materializecss.com/text-inputs.html - Prefilling Text Inputs To avoid labels overlapping prefilled content, add class="active" to the label.
According to the [Text Input documentation](https://materializecss.com/text-inputs.html), help texts have custom css through the 'helper-text' class. These help texts are span elements.
…and not widget level (as recommended in the official doc https://docs.djangoproject.com/en/3.1/ref/forms/fields/#disabled), this affects only the complex fields on field.html that needs to be mounted again (date, datetime, textarea and select)...
The file upload icon is blocking the text and looks bad. The file name of the previous file uploaded is on the button and was originally a light blue color...
I want to use material icons as much as I can but fontawesome has much more icons and I need to use them at times when it is needed. Is...
For form..help_text, if you can add the helper-text class, it would be great. Currently, I am using like this, ``` enhanced_encryption {{form.password1}} {{form.password1.label_tag}} {% if form.password1.help_text %} {{form.password1.help_text |safe}} {%...
If I pass whole form, form.non_field_errors is changed to blockquote, which is really good. But if I want to pass {{ form.non_field_errors | materializecss }}, it is throwing this error....
The package does not work for me I installed the package with `pip install django-materializecss-form` I added the package in the installed apps `INSTALLED_APPS = ( 'materializecssform', ... )` I...