goinnn / django-form-admin

It is a Django application that lets to render forms like django admin, with the same HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-form-admin

Information

https://badge.fury.io/py/django-form-admin.png https://pypip.in/d/django-form-admin/badge.png

It is a Django application that lets to render forms like django admin, with the same HTML

Requirements

How to use it

Option 1

In your form:

class FooForm(forms.Form, FormAdminDjango):
    pass

class FooModelForm(forms.ModelForm, FormAdminDjango):
    pass

In your template:

{{ form.as_django_admin }}

Option 2

But you don't need inherit of FormAdminDjango, you may also do

In your form:

class FooForm(forms.Form):
    ...

    def as_django_admin(self):
        from formadmin.forms import as_django_admin
        return as_django_admin(self)

In your template:

{{ form.as_django_admin }}

Option 3

Or even without modify the form

Only in your template:

{% load formadmin_filters %}
{{ form|as_django_admin }}

Development

You can get the bleeding edge version of django-form-admin by doing a clone of its git repository:

git clone git://github.com/Yaco-Sistemas/django-form-admin.git

About

It is a Django application that lets to render forms like django admin, with the same HTML

License:GNU Lesser General Public License v3.0


Languages

Language:Python 91.3%Language:HTML 8.7%