Skip to main content

Fast CRUD builder.

Project description

https://img.shields.io/pypi/v/django-dedal.svg?style=flat-square https://img.shields.io/pypi/pyversions/django-dedal.svg?style=flat-square https://img.shields.io/travis/ar4s/django-dedal.svg?style=flat-square https://img.shields.io/codacy/3280ce639e6442ed809a817d2e20de17.svg?style=flat-square https://img.shields.io/coveralls/ar4s/django-dedal.svg?style=flat-square

Fast CRUD builder.

Documentation

The full documentation is at https://django-dedal.readthedocs.org.

Demo

Example project is available on http://django-dedal.herokuapp.com/.

Quickstart

Install django-dedal:

pip install django-dedal

Then use it in a Django project simple add dedal and bootstrapform (if you want use bootstrap) to INSTALLED_APPS:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    ...
    'dedal',
    'bootstrapform',
)

After this decorate your model by @crud:

from django.db import models

from dedal.decorators import crud


@crud
class Post(models.Model):
    title = models.CharField(max_length=50)
    body = models.TextField()
    comments = models.ManyToManyField('Comment', blank=True)

    def __str__(self):
        return '{}'.format(self.title)

That’s all!

TODO

  • pagination

  • select related

History

1.0.1 (2016-03-30)

  • refactored tests

  • fixes heroku example app

1.0.0 (2016-03-26)

  • removed urls.W002 (changed URL for list)

  • changed URL format for reverse (introduced namespace)

  • dropped support for python 2.x

0.1.0 (2015-05-09)

  • First release on PyPI.

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-dedal-1.0.1.tar.gz (144.1 kB view details)

Uploaded Source

File details

Details for the file django-dedal-1.0.1.tar.gz.

File metadata

File hashes

Hashes for django-dedal-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f4d3c1ef423eb13ee44edcb02f1f9e2b01916797873d163ea53299d40ec0469e
MD5 1d78a3c4305057a46d2d787cbcc9f41d
BLAKE2b-256 e0c0cc689f4a7fb29da96157bde7b3a23fa4dfe93fc9a8bd01ada32394f5210e

See more details on using hashes here.

Supported by

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