django-crudbuilder
django-crudbuilder copied to clipboard
Generic CRUD implementation in Django
I tried to resemble your example with Person and PersonCrud but I get empty registered cruds list. Should I explicitly register a crud in some way?
I am having problem with inline updates not updating. Please help.
Hello, I added django-simple-history to my project and found out that every time I update my record using crudbuilder post_save signal is called 2 times in a row. As a...
It will be easier for developers to evaluate this project at a higher level if you attach a few screenshots to demonstrate how the generated screens look and feel like.
I looked briefly at the source code. It seems like the views and templates are generated in memory. Using inspect in chrome there seems to be an index file. It...
Right now is possible to define one inline crud: as docs explains: ```python # yourapp/crud.py from crudbuilder.formset import BaseInlineFormset class PersonEmploymentInlineFormset(BaseInlineFormset): inline_model = PersonEmployment parent_model = Person exclude = ['created_by',...
Hello. I would like to have a control over routing of urls so they don't depend on names of apps and models. Is that possible ?
with this commit I added multiple inline formsets and an italian translation the change is compatible with applications with single inline formset
If I have a model named `Delivery` and feed it into CRUD Builder Django correctly assembles the url as: `/crud/models/deliveries/` But everything in CRUD Builder itself says: `Deliverys` Same for...