No description
  • Python 88.4%
  • HTML 5.8%
  • JavaScript 5.7%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2013-07-18 10:22:23 -06:00
docs Fixes #72 -- hidden fields were printed multiple times when formsets where used. 2013-07-09 01:13:10 +02:00
floppyforms Fixes #72 -- hidden fields were printed multiple times when formsets where used. 2013-07-09 01:13:10 +02:00
requirements Switched back to the PyPI release of discover-runner now that it supports py3 2013-01-29 19:59:16 +01:00
script add dummy cibuild script to test janky 2013-07-18 10:22:23 -06:00
.gitignore Moved away from own test runner and use django-discover-runner instead. 2012-05-29 16:42:25 +02:00
.travis.yml Exclude django 1.4/py3.3 again 2013-04-27 13:44:51 +02:00
benchmark.py Updated benchmark.py for easier use 2012-01-02 14:47:55 +01:00
LICENSE Fix licence 2013-06-23 13:27:55 +02:00
Makefile Moved away from own test runner and use django-discover-runner instead. 2012-05-29 16:42:25 +02:00
MANIFEST.in Added requirements and docs to manifest template so they are shipped with the source distribution. 2012-05-30 12:20:37 +02:00
README.rst More release notes and compatibility info 2013-01-27 15:54:34 +01:00
setup.py Ported the code to run on Python 2 and 3. 2013-01-27 15:12:38 +01:00
tox.ini Ported the code to run on Python 2 and 3. 2013-01-27 15:12:38 +01:00

Django-floppyforms
==================

.. image:: https://api.travis-ci.org/brutasse/django-floppyforms.png
   :alt: Build Status
   :target: https://travis-ci.org/brutasse/django-floppyforms

Full control of form rendering in the templates.

* Author: Bruno Renié and `contributors`_
* Licence: BSD
* Requirements: homework -- read `this`_.

.. _contributors: https://github.com/brutasse/django-floppyforms/contributors
.. _this: http://diveintohtml5.info/forms.html

Installation
------------

* ``pip install -U django-floppyforms``
* Add ``floppyforms`` to your ``INSTALLED_APPS``

For extensive documentation see the ``docs`` folder or `read it on
readthedocs`_

.. _read it on readthedocs: http://django-floppyforms.readthedocs.org/

To install the `in-development version`_ of django-floppyforms, run ``pip
install django-floppyforms==dev``.

.. _in-development version: https://github.com/brutasse/django-floppyforms/tarball/master#egg=django-floppyforms-dev

Help
----

Ask your questions on the #django-floppyforms IRC channel on freenode.

Bugs
----

Really? Oh well... Please Report. Or better, fix :)

Development
-----------

Thanks for asking!

Get the code::

    git clone git@github.com:brutasse/django-floppyforms.git
    cd django-floppyforms
    virtualenv -p python2 env
    source env/bin/activate
    add2virtualenv .

Install the development requirements::

    pip install -r requirements/tests.txt
    pip install django  # must be django 1.4.2 or above

Run the tests::

    DJANGO_SETTINGS_MODULE=floppyforms.test_settings make test