Metadata-Version: 1.1
Name: formica
Version: 1.1
Summary: Django form rendering helpers
Home-page: http://pythonhosted.org/formica
Author: Olivier Meunier
Author-email: olivier@neokraft.net
License: FreeBSD
Description: =======
        Formica
        =======
        
        Overview
        ========
        
        Rendering forms with Django can be painful and not very rewarding. There are some nice solutions
        arround like `django-floppyforms <http://django-floppyforms.readthedocs.org/en/latest/>`_ or
        `django-crispy-forms <https://github.com/maraujop/django-crispy-forms>`_ but you may want
        something a bit less complex.
        
        Formica design is heavily based on `Formulation <https://github.com/funkybob/formulation/>`_, a very
        lightweight, yet powerful, solution based on template blocks. All credits should go to
        `Curtis Maloney <https://github.com/funkybob>`_ for this impressive and simple idea.
        
        A simple example
        ================
        
        Say we have a form somewhere and want to render it in a template.
        
        ::
        
          from django import forms
          class MyForm(forms.Form):
            email = forms.EmailField(label='Email')
            check = forms.BooleanField(label='I really love spam', required=False)
        
        Rendering the form is as simple as::
        
          {% load formica %}
        
          <form method="post">
            {% form "formica/base_form.html" %}
              {% fields %}
            {% endform %}
        
            <p><input type="submit" value="save" /></p>
          </form>
        
        Pretty cool isn't it?
        Read the `documentation <http://pythonhosted.org/formica>`_ to learn more.
        
        Sources & license
        =================
        
        Formica sources are hosted on Github:
        https://github.com/olivier-m/formica
        
        Formica is released under the
        `FreeBSD license <http://www.freebsd.org/copyright/freebsd-license.html>`_.
        
Keywords: django forms templates
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
