Generic scaffolding for Django
Project description
With django-generic-scaffold you can quickly create and route CRUD generic class based views for your models so you will have a basic CRUD interface by writing only two lines of extra code!
django-generic-scaffold is different from other scaffolding tools because it generates all views/url routes on-the-fly and not by outputing python code.
Installation
Install it with pip install django-generic-scaffold, or if you want to use the latest version on github, try pip install git+https://github.com/spapas/django-generic-scaffold.
If you want to use the template tags of django-generic-scaffold to get the URLs of your scaffolds, please put it in your INSTALLED_APPS setting. If you don’t need the template tags then no other installation is needed.
Simple usage
Let’s say you have defined a model named TestModel in your models.py. In your views.py define a class that overrides CrudManager:
from generic_scaffold import CrudManager
import models
class TestCrudManager(CrudManager):
model = models.TestModel
Now, include the following lines to the urls.py of your application:
from views import TestCrudManager
test_crud = TestCrudManager()
urlpatterns += test_crud.get_url_patterns('test_crud')
You may now visit http://127.0.0.1:8000/test_crud/ to get a list of your TestModel instances, after you add a template named app_name/testmodel_list.html (which is the default template for the ListView). Beyond the list view, you have also the following views:
Create: http://127.0.0.1:8000/test_crudcreate/ (add app_name/testmodel_form.html)
Detail: http://127.0.0.1:8000/test_cruddetail/<id> (add app_name/testmodel_detail.html)
Edit: http://127.0.0.1:8000/test_crudupdate/<id> (add app_name/testmodel_form.html)
Delete: http://127.0.0.1:8000/test_cruddelete/<id> (add app_name/testmodel_confirm_delete.html)
The 'test_crud' option you pass to the get_url_patterns method will just prepend this prefix o all created url.
Configuration
Most of the time, you’ll need to configure three things before using django-generic-scaffold: The form class used for create and update, the access permissions for each generic class based view and the templates that each view will use. These can be configured just by settings options to your class.
To configure the form class that will be used, use the option form_class.
To configure the template names to use something different than the defaults, use action_template_name where actions is list, detail, update, create or delete. So to configure the detail template name to be foo.html you’ll use the option detail_template_name = 'foo.html'.
To set the permissions you have to set the permissions attribute to a dictionary of callables. The keys of that dictionary should be list, detail, update, create or delete while the values should be callables like login_required or permission_required('permission') etc.
Finally, for any other configuration of the generated class based views you’ll need to define mixins that will be passed as a list using the option action_mixins (again action is either list, detail, etc).
Sample configuration
A sample config that uses a different form (TestForm), defines different behavior using mixins for create and update and needs a logged in user for update / delete / create (but anonymous users can list and detail) is the following:
from django.contrib.auth.decorators import login_required
class TestCrudManager(CrudManager):
model = models.TestModel
form_class = forms.TestForm
create_mixins = (CreateMixin, )
update_mixins = (UpdateMixin, )
permissions = {
'update': login_required,
'delete': login_required,
'create': login_required,
}
Changelog
v.0.1.1
Add template tags to get crud urls
v.0.1
Initial
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
File details
Details for the file django-generic-scaffold-0.1.1.zip
.
File metadata
- Download URL: django-generic-scaffold-0.1.1.zip
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb4f04a9e006497b22c1f7cb8cb89ba1a736e4ed59db0158b94b71723863e2c9 |
|
MD5 | f9197cb348955853eaabfd080e81df92 |
|
BLAKE2b-256 | 17a79be71374ff6e5859cebbe568bcd922aea312b2f8ad33cd3eba18d35b73fe |