Control of widgets in templates sans BS.
Project description
Control of widgets in templates sans BS.
Installation
We are at the cheeseshop:
pip install django_reform
Usage
To use django_reform in a project:
Include it in INSTALLED_APPS in your settings file.
Render your forms like so:
{% load reform %} {{ reform form }}
Open reform/templates/reform/field.html - by default rendering HTML5 input types. Go ahead and tweak:
{% load widget_tweaks reform %} {% with field_type=field|get_form_field_type %} {% if field_type == 'DateField' %} {% render_field field type="date" %} {% elif field_type == 'EmailField' %} {% render_field field type="email" %} {% elif field_type == 'URLField' %} {% render_field field type="url" %} {% else %} {{ field }} {% endif %} {% endwith %}
Advanced usage - controlling which fields to include, order of the fields as well as number of columns in which the form is rendered. The code below will render a form with the given fields, bootstrap vertical layout, no float and using 3-columns:
{% reform form 'email, number, url, time' 'vertical,false,3' %}
Sans BS as promised :)
History
0.1.0 (2013-11-25)
First release on PyPI.
0.1.1 (2013-11-25)
Basic documentation.
0.2.0 (2013-12-8)
Added replacement for bootstrap_toolkit’s as_bootstrap template filter. The reform template tag passed the original template context to the form templates enabling checks for instance for permissions etc.
0.2.1 (2013-12-8)
Added bootstrp CDN.
0.3.0 (2013-12-10)
Added bootstrp for field inclusions and orderings as well a multi-column layouts.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django_reform-0.3.0.tar.gz
.
File metadata
- Download URL: django_reform-0.3.0.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 634213cef58274f18e2c03886a550b9ba94f6e8d10aed06174ef98aa09232718 |
|
MD5 | 670e1b5123c68529109d35d875b41b57 |
|
BLAKE2b-256 | 818da63f36e585abedf3b7a865b8578099eccd03f3c6a7712a175bf0cca5a4fc |