Skip to main content

Abstract class implemented to provide form django admin like

Project description

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

Releases

0.5.1 (2018-03-05)

  • Fix previous version (Django support > 1.8)

0.5.0 (2018-03-05)

  • Django support > 1.8 (1.9 - 1.11)

  • Improve readme file

  • Thanks to:

0.4.2 (2013-10-28)

  • Fix an error when to install this egg from pypi

0.4.1 (2013-10-04)

  • Improvements in the example project

0.4.0 (2013-09-12)

  • New way to render the form (filter)

  • Update metainfo

  • Example project

0.3.2 (2011-12-03)

  • Subversion version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-form-admin-0.5.1.tar.gz (6.1 kB view details)

Uploaded Source

File details

Details for the file django-form-admin-0.5.1.tar.gz.

File metadata

File hashes

Hashes for django-form-admin-0.5.1.tar.gz
Algorithm Hash digest
SHA256 328e7c818affff8900a5254d308d67cad40ad609a0358609d28360d6d286bcfe
MD5 f18b556323e56cd46ecdb7e39d1689b2
BLAKE2b-256 ee3453cfe1d2800df170b5b26ba8310e7e7f1b788d4b72eaf0c59fa371821c19

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page