Metadata-Version: 2.1 Name: django-widget-tweaks Version: 1.4.8 Summary: Tweak the form field rendering in templates, not in python-level form definitions. Home-page: https://github.com/jazzband/django-widget-tweaks Author: Mikhail Korobov Author-email: kmike84@gmail.com License: MIT license Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Framework :: Django Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Topic :: Software Development :: Libraries :: Python Modules Requires: django (>=1.11) ==================== django-widget-tweaks ==================== .. image:: https://jazzband.co/static/img/badge.svg :target: https://jazzband.co/ :alt: Jazzband .. image:: https://img.shields.io/pypi/v/django-widget-tweaks.svg :target: https://pypi.python.org/pypi/django-widget-tweaks :alt: PyPI Version .. image:: https://img.shields.io/travis/jazzband/django-widget-tweaks/master.svg :target: http://travis-ci.org/jazzband/django-widget-tweaks :alt: Build Status Tweak the form field rendering in templates, not in python-level form definitions. Altering CSS classes and HTML attributes is supported. That should be enough for designers to customize field presentation (using CSS and unobtrusive javascript) without touching python code. License is MIT. Installation ============ You can get Django Widget Tweaks by using pip:: $ pip install django-widget-tweaks To enable `widget_tweaks` in your project you need to add it to `INSTALLED_APPS` in your projects `settings.py` file:: INSTALLED_APPS = [ ... 'widget_tweaks', ... ] Usage ===== This app provides two sets of tools that may be used together or standalone: 1. a ``render_field`` template tag for customizing form fields by using an HTML-like syntax. 2. several template filters for customizing form field HTML attributes and CSS classes The ``render_field`` tag should be easier to use and should make form field customizations much easier for designers and front-end developers. The template filters are more powerful than the ``render_field`` tag, but they use a more complex and less HTML-like syntax. render_field ------------ This is a template tag that can be used as an alternative to aforementioned filters. This template tag renders a field using a syntax similar to plain HTML attributes. Example:: {% load widget_tweaks %} {% render_field form.search_query type="search" %} {% render_field form.text rows="20" cols="20" title="Hello, world!" %} {% render_field form.title class+="css_class_1 css_class_2" %} {% render_field form.text placeholder=form.text.label %} {% render_field form.search_query v-bind::class="{active:isActive}" %} For fields rendered with ``{% render_field %}`` tag it is possible to set error class and required fields class by using ``WIDGET_ERROR_CLASS`` and ``WIDGET_REQUIRED_CLASS`` template variables:: {% with WIDGET_ERROR_CLASS='my_error' WIDGET_REQUIRED_CLASS='my_required' %} {% render_field form.field1 %} {% render_field form.field2 %} {% render_field form.field3 %} {% endwith %} You can be creative with these variables: e.g. a context processor could set a default CSS error class on all fields rendered by ``{% render_field %}``. attr ---- Adds or replaces any single html attribute for the form field. Examples:: {% load widget_tweaks %} {{ form.search_query|attr:"type:search" }} {{ form.text|attr:"rows:20"|attr:"cols:20"|attr:"title:Hello, world!" }} {{ form.search_query|attr:"autofocus" }} {{ form.search_query|attr:"v-bind::class:{active:ValueEnabled}" }} add_class --------- Adds CSS class to field element. Split classes by whitespace in order to add several classes at once. Example:: {% load widget_tweaks %} {{ form.title|add_class:"css_class_1 css_class_2" }} set_data -------- Sets HTML5 data attribute ( http://ejohn.org/blog/html-5-data-attributes/ ). Useful for unobtrusive javascript. It is just a shortcut for 'attr' filter that prepends attribute names with 'data-' string. Example:: {% load widget_tweaks %} {{ form.title|set_data:"filters:OverText" }} append_attr ----------- Appends attribute value with extra data. Example:: {% load widget_tweaks %} {{ form.title|append_attr:"class:css_class_1 css_class_2" }} 'add_class' filter is just a shortcut for 'append_attr' filter that adds values to the 'class' attribute. remove_attr ----------- Removes any single html attribute for the form field. Example:: {% load widget_tweaks %} {{ form.title|remove_attr:"autofocus" }} add_label_class --------------- The same as `add_class` but adds css class to form labels. Example:: {% load widget_tweaks %} {{ form.title|add_label_class:"label_class_1 label_class_2" }} add_error_class --------------- The same as 'add_class' but adds css class only if validation failed for the field (field.errors is not empty). Example:: {% load widget_tweaks %} {{ form.title|add_error_class:"error-border" }} add_error_attr -------------- The same as 'attr' but sets an attribute only if validation failed for the field (field.errors is not empty). This can be useful when dealing with accessibility:: {% load widget_tweaks %} {{ form.title|add_error_attr:"aria-invalid:true" }} add_required_class ------------------ The same as 'add_error_class' adds css class only for required field. Example:: {% load widget_tweaks %} {{ form.title|add_required_class:"is-required" }} field_type and widget_type -------------------------- ``'field_type'`` and ``'widget_type'`` are template filters that return field class name and field widget class name (in lower case). Example:: {% load widget_tweaks %}
Output::