django-floppyforms-1.1.1/ 0000755 0001750 0000144 00000000000 12267566271 015650 5 ustar brute users 0000000 0000000 django-floppyforms-1.1.1/MANIFEST.in 0000644 0001750 0000144 00000000413 11765447373 017407 0 ustar brute users 0000000 0000000 include README.rst recursive-include floppyforms/templates *.html recursive-include floppyforms/static *.js recursive-include floppyforms/tests/templates *.html recursive-include requirements *.txt recursive-include docs *.rst *.png include docs/Makefile docs/conf.py django-floppyforms-1.1.1/PKG-INFO 0000644 0001750 0000144 00000005165 12267566271 016754 0 ustar brute users 0000000 0000000 Metadata-Version: 1.1 Name: django-floppyforms Version: 1.1.1 Summary: Full control of form rendering in the templates Home-page: https://github.com/brutasse/django-floppyforms Author: Bruno Renié Author-email: bruno@renie.fr License: BSD licence, see LICENSE file Description: 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 tox Run the tests:: tox -e py27-1.6 You can see all the supported test configurations with ``tox -l``. Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Framework :: Django Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License Classifier: Natural Language :: English Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 django-floppyforms-1.1.1/requirements/ 0000755 0001750 0000144 00000000000 12267566271 020373 5 ustar brute users 0000000 0000000 django-floppyforms-1.1.1/requirements/tests.txt 0000644 0001750 0000144 00000000047 12102015747 022260 0 ustar brute users 0000000 0000000 coverage flake8 django-discover-runner django-floppyforms-1.1.1/docs/ 0000755 0001750 0000144 00000000000 12267566271 016600 5 ustar brute users 0000000 0000000 django-floppyforms-1.1.1/docs/usage.rst 0000644 0001750 0000144 00000007227 12100761256 020430 0 ustar brute users 0000000 0000000 Usage ===== Forms ````` Floppyforms are supposed to work just like Django forms:: import floppyforms as forms class ProfileForm(forms.Form): name = forms.CharField() email = forms.EmailField() url = forms.URLField() With some template code: .. code-block:: jinja
The form will be rendered using the ``floppyforms/layouts/p.html`` template. See the :doc:`documentation about layouts