Hari Mahadevan
Hari Mahadevan
I had a requirement to add a field to Vote model and I first forked the code as a private app into my project. Then decided to try implementing the...
ViewSets that dynamically determines the queryset it should operate on, would override get_queryset() method omitting the queryset class attribute. In such viewsets, VoteMixin would cause an exception during runtime. Solution...
A small tweak to the code to support localizing the verification message. This is a crucial requirement for many multilingual systems.
Instead of separate class attributes for permissions to individual views, use a dictionary to store all required permissions for individual CRUD views, keyed by their view name. For example: ```...
Ideally search across the whole table or search based on client configurable fields.
Action column, that contains links to Edit,Delete or user defined actions should be hidden if the list view explicitly disables all per item actions. That is, CrudViewSet is used purely...
**Missing `initialize()` in npmjs package** I can't find the `initialize()` method in the package installed from npmjs. However, I see that the method is in the GitHub source. I'm using...