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 hashes)

Uploaded Source

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