Skip to main content

Fast and predicatable creation of admin panels and applications

Project description

https://badge.fury.io/py/django-cruds-mixins.svg https://travis-ci.org/bmihelac/django-cruds-mixins.svg?branch=master https://codecov.io/gh/bmihelac/django-cruds-mixins/branch/master/graph/badge.svg

EXPRERIMENTAL SOFTWARE! Do not use!

django-cruds-mixins integrates several libraries to enable easy, fast and predicatable creation of admin panels and applications.

Features

  • list, create, update, detail, delete views for your models

  • customizable tables with orderable columns, pagination and automatic links for ForeignKey fields, easily customizable with django-tables2

  • search fiters based on model fields with django-filter

  • permissions creation and integration with django-rules

  • advanced forms with django-crispy-forms

  • selections and bulk actions

  • utils for creating URLconfs, permissions, filtersets, tables

Documentation

The full documentation is at https://django-cruds-mixins.readthedocs.io.

Quickstart

Install django-cruds-mixins:

pip install django-cruds-mixins

Add django-cruds-mixin and related apps to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'rules.apps.AutodiscoverRulesConfig',
    'crispy_forms',
    'django_tables2',
    'cruds',
    'cruds_mixins',
    ...
)

Add the django-rules authentication backend for using permissions.

AUTHENTICATION_BACKENDS = (
    'rules.permissions.ObjectPermissionBackend',
    'django.contrib.auth.backends.ModelBackend',
)

Add django-cruds-mixins’s URL patterns:

from cruds_mixins import urls as cruds_mixins_urls


urlpatterns = [
    ...
    url(r'^', include(cruds_mixins_urls)),
    ...
]

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

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-cruds-mixins-1.3.0.tar.gz (16.4 kB view hashes)

Uploaded Source

Built Distribution

django_cruds_mixins-1.3.0-py2-none-any.whl (27.9 kB view hashes)

Uploaded Python 2

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