1👍
Check out http://viewflow.io/. This might be helpful for your use case or you can extend this to suit your needs.
0👍
I would create another table (tablename_approval) with columns something like
approved | boolean
approved_by | foreign key to user
timestamp | timestamp
to track the state of each individual row.
You might want to consider an enum rather than boolean to track the difference between items which have not yet been approved versus those that were checked and intentionally not approved.
- [Answer]-Django staticfiles_urlpatterns not working
- [Answer]-Using Django-genereted SQL tables in another project
- [Answer]-Keep User authenticated using Django Rest and Phonegap?
- [Answer]-Author = models.ForeignKey('auth.User', null=True, blank=False) trouble
- [Answer]-List in local working fine but in server works inverse
Source:stackexchange.com