Contents
It is a Django application that lets to render forms like django admin, with the same HTML
- Django (>= 1.0, the example project needs >=1.3)
In your form:
class FooForm(forms.Form, FormAdminDjango): pass class FooModelForm(forms.ModelForm, FormAdminDjango): pass
In your template:
{{ form.as_django_admin }}
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 }}
Or even without modify the form
Only in your template:
{% load formadmin_filters %} {{ form|as_django_admin }}
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