Tailwind CSS for Django Crispy Forms
Project description
A Tailwind CSS template pack for the wonderful django-crispy-forms.
WARNING
This project is still in its early stages of development. Any contributions to the package would be very welcomed.
Currently the template pack allows the use of the |crispy filter to style your form. Here is an example image.
How to install
Install via pip.
pip install crispy-tailwind
You will need to update your project’s settings file to add crispy_forms and crispy_tailwind to your project’s INSTALLED_APPS setting. Also set tailwind as an allowed template pack and as the default template pack for your project:
INSTALLED_APPS = ( ... "crispy_forms", "crispy_tailwind", ... ) CRISPY_ALLOWED_TEMPLATE_PACKS = "tailwind" CRISPY_TEMPLATE_PACK = "tailwind"
How to use
This project is still in its early stages.
Current functionality allows the |crispy filter to be used to style your form. In your template:
Load the filter: {% load tailwind_filters %}
Apply the crispy filter: {{ form|crispy }}
We can also use the {% crispy %} tag to allow usage of crispy-forms’ FormHelper and Layout. In your template:
Load the crispy tag: {% load crispy_forms_tags %}
Add FormHelper to your form and use crispy-forms to set-up your form
Use the crispy tag {% crispy form %} in your template
Documentation
The documentation for this project is available here: https://django-crispy-forms.github.io/crispy-tailwind/index.html
FAQs
What about custom widgets?
The template pack includes default styles for widgets included in Django itself. Styling of widget instances can be done by using the widget.attrs argument when creating the widget.
For example the following form will render <input type="text" name="name" class="customtextwidget custom-css" required id="id_name">:
class CustomTextWidget(forms.TextInput): pass class CustomTextWidgetForm(forms.Form): name = forms.CharField( widget=CustomTextWidget(attrs={"class": "custom-css"}) )
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file crispy-tailwind-1.0.3.tar.gz
.
File metadata
- Download URL: crispy-tailwind-1.0.3.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bc9f616d406e4b003f25d46fcb0079f1c2522719d97adb107667271d849459a |
|
MD5 | 1dda7965acdce088243681c92673b78c |
|
BLAKE2b-256 | aeaca307ae5ce869d7151b90d4b8b042a48eb454a936dacc695f6418486e5bd8 |
File details
Details for the file crispy_tailwind-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: crispy_tailwind-1.0.3-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31427f66b1c4fd0d6fb040f4197cfb97d104cdbe7641ea2dea940c0057c4db4b |
|
MD5 | 634947c432210962735f3a35defa51e3 |
|
BLAKE2b-256 | c9ca11f65e24f3c182dfaf90fd3710d2dcca0fbc3026923e47b43f52a4a2349b |