Metadata-Version: 1.0
Name: django-form-admin
Version: 0.3
Summary: Abstract class implemented to provide form django admin like
Home-page: https://tracpub.yaco.es/djangoapps/wiki/DjangoFormAdmin
Author: Yaco Sistemas S.L.
Author-email: pmartin@yaco.es
License: LGPL 3
Description: .. contents::
        
        =================
        Django form admin
        =================
        
        Information
        ===========
        
        It is a Django application that lets to render forms like django admin, with the same HTML
        
        
        How to use it
        =============
        
        In your form:
        
        ::
        
        class FooForm(forms.Form, FormAdminDjango):
        pass
        
        class FooModelForm(forms.ModelForm, FormAdminDjango):
        pass
        
        In your template:
        
        ::
        
        {{ form.as_django_admin }}
        
        Development
        ===========
        
        You can get the last bleeding edge version of autoreports by doing a checkout
        of its subversion repository::
        
        svn co http://svnpub.yaco.es/djangoapps/formadmin/trunk/formadmin
        
Keywords: django admin form render
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
