Hello, I am developing a django project for auctions. I want to add the following functionality:
A registered and logged in user must add a product (I have accomplished registration and authentication). When this user clicks some /add/product/ or whatever link, I need to fetch the very admin-add-product template-interface (redirect maybe?), so that he adds a product as if he was admin.
How can I accomplish this?
I assume that a preliminary work/condition must be that when a user is registering, in some way he must automatically be granted the permission of adding products. So, how can this be done also?