Skip to main content

Control of widgets in templates sans BS.

Project description

https://badge.fury.io/py/django_reform.png https://travis-ci.org/alixedi/django_reform.png?branch=master https://pypip.in/d/django_reform/badge.png

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:

  1. Include it in INSTALLED_APPS in your settings file.

  2. Render your forms like so:

    {% load reform %}
    {{ reform form }}
  3. 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 %}
  4. 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

django_reform-0.3.0.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file django_reform-0.3.0.tar.gz.

File metadata

File hashes

Hashes for django_reform-0.3.0.tar.gz
Algorithm Hash digest
SHA256 634213cef58274f18e2c03886a550b9ba94f6e8d10aed06174ef98aa09232718
MD5 670e1b5123c68529109d35d875b41b57
BLAKE2b-256 818da63f36e585abedf3b7a865b8578099eccd03f3c6a7712a175bf0cca5a4fc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page