https://github.com/github/django-floppyforms
Full control of form rendering in the templates.
https://github.com/github/django-floppyforms
Last synced: 5 months ago
JSON representation
Full control of form rendering in the templates.
- Host: GitHub
- URL: https://github.com/github/django-floppyforms
- Owner: github
- License: other
- Archived: true
- Fork: true (jazzband/django-floppyforms)
- Created: 2013-07-17T20:17:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-18T16:22:22.000Z (over 12 years ago)
- Last Synced: 2024-09-30T00:20:21.794Z (over 1 year ago)
- Language: Python
- Homepage: http://django-floppyforms.readthedocs.org/
- Size: 1.33 MB
- Stars: 9
- Watchers: 25
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
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