Tweak the form field rendering in templates, not in python-level form definitions.
Project description
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.
The license is MIT.
Installation
pip install django-widget-tweaks
Then add ‘widget_tweaks’ to INSTALLED_APPS.
Usage
This app provides several template filters that can alter CSS classes and HTML attributes of django form fields.
attr
Adds or replaces any single html atribute for the form field.
Examples:
{% load widget_tweaks %} <!-- change input type (e.g. to HTML5) --> {{ form.search_query|attr:"type:search" }} <!-- add/change several attributes --> {{ form.text|attr:"rows:20"|attr:"cols:20"|attr:"title:Hello, world!" }} <!-- attributes without parameters --> {{ form.search_query|attr:"autofocus" }}
add_class
Adds CSS class to field element. Split classes by whitespace in order to add several classes at once.
Example:
{% load widget_tweaks %} <!-- add 2 extra css classes to field element --> {{ 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 %} <!-- data-filters:"OverText" will be added to input field --> {{ form.title|set_data:"filters:OverText" }}
append_attr
Appends atribute value with extra data.
Example:
{% load widget_tweaks %} <!-- add 2 extra css classes to field element --> {{ 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.
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 %} <!-- add 'error-border' css class on field error --> {{ form.title|add_error_class:"error-border" }}
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 %} <!-- change input type (e.g. to HTML5) --> {% render_field form.search_query type="search" %} <!-- add/change several attributes --> {% render_field form.text rows="20" cols="20" title="Hello, world!" %} <!-- append to an attribute --> {% render_field form.title class+="css_class_1 css_class_2" %} <!-- template variables can be used as attribute values --> {% render_field form.text placeholder=form.text.label %}
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 %} <div class="field {{ field|field_type }} {{ field|widget_type }} {{ field.html_name }}"> {{ field }} </div>
Output:
<div class="field charfield textinput name"> <input id="id_name" type="text" name="name" maxlength="100" /> </div>
Filter chaining
The order django-widget-tweaks filters apply may seem counter-intuitive (leftmost filter wins):
{{ form.simple|attr:"foo:bar"|attr:"foo:baz" }}
returns:
<input foo="bar" type="text" name="simple" id="id_simple" />
It is not a bug, it is a feature that enables creating reusable templates with overridable defaults.
Reusable field template example:
{# inc/field.html #} {% load widget_tweaks %} <div>{{ field|attr:"foo:default_foo" }}</div>
Example usage:
{# my_template.html #} {% load widget_tweaks %} <form method='POST' action=''> {% csrf_token %} {% include "inc/field.html" with field=form.title %} {% include "inc/field.html" with field=form.description|attr:"foo:non_default_foo" %} </form>
With ‘rightmost filter wins’ rule it wouldn’t be possible to override |attr:"foo:default_foo" in main template.
Contributing
If you’ve found a bug, implemented a feature or have a suggestion, do not hesitate to contact me, fire an issue or send a pull request.
Source code:
Bug tracker: https://bitbucket.org/kmike/django-widget-tweaks/issues/new
running the tests
Make sure you have tox installed, then type
tox
from the source checkout.
Changes
1.1.2 (2012-06-06)
support for template variables is added to render_field tag;
new field_type and widget_type filters.
1.1.1 (2012-03-22)
some issues with render_field tag are fixed.
1.1 (2012-03-22)
render_field template tag.
1.0 (2012-02-06)
filters return empty strings instead of raising exceptions if field is missing;
test running improvements;
python 3 support;
undocumented ‘behave’ filter is removed.
0.3 (2011-03-04)
add_error_class filter.
0.2.1 (2011-02-03)
Attributes customized in widgets are preserved;
no more extra whitespaces;
tests;
0.1 (2011-01-12)
Initial release.
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
Hashes for django-widget-tweaks-1.1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51bdd2344c7a975d3fb89c70fb94a59e10ebd4774b351ea261216eab1fd82dc7 |
|
MD5 | b7658d26dca0885c2bf922ec4903bfc6 |
|
BLAKE2b-256 | e79c2abe18f14bc491cea00eb1425a2046c32d1f13d8b7f64964e315794314b2 |