Django admin is really awesome. It provides hell lot of features, we can play around with data the extensively.
Instead of writing model forms? Is it possible for me to serve some of the forms that django has with all the CRUD functionality to a non admin user.
Say I have three classes in my model.
Class A, Class B, and Class C.
In the admin I can equally play around with A, B, and C.
But in case, if I want the logged in user to play around with class C, the user is not admin, and I do not want him to see the admin part? So in a different url, is it possible for me, to import the forms from admin and serve???
Let me know, thanks!