Fast and predicatable creation of admin panels and applications
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_cruds_mixins-3.0.0.tar.gz
.
File metadata
- Download URL: django_cruds_mixins-3.0.0.tar.gz
- Upload date:
- Size: 24.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 279144d507c9abb133d2ff15e608dbe7cb616920fc3362118bae743f463764ed |
|
MD5 | b6d979a4ad274d16f6302205d2b761cb |
|
BLAKE2b-256 | e9d6e3a9d79f52f430f8a1936a8cc634661d76475faee4a06c75b961dae110a3 |
File details
Details for the file django_cruds_mixins-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: django_cruds_mixins-3.0.0-py3-none-any.whl
- Upload date:
- Size: 27.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 888dcf2090c03d02f919d1d73f7eb289feae42d1c343cc7ba9c8f1b4e1794d9b |
|
MD5 | 2f2eee9be456838da99d866840653ee1 |
|
BLAKE2b-256 | 661a55ea93e709d6b90dfc66b954e3a43cc0c106c28f0bfd516e08cef1560b4c |