Essentially I am creating a webapp for a customer with a business that would allow customers of his business to be able to purchase specific things which I set up as entities. However, my customer wants to be able to have a specific page where he can post/upload images of his items, and based on:
Google App Engine - find out if a user is an administrator
-it seems I can't do an administrator login, so is there a way using the user model object to specify a specific page for a particular user login via a google account? So essentially I was thinking that I would create 2 different python and html pages one for the customers and one for the administrator/buiness owner. Depending on a specific login I would route accordingly. I am a relative newbie to Google App Engine, and have a short amount of experience with Python. The business owner created the app engine specific domain name and I was invited as a developer, so I am assuming he is considered the admin so I think I can use: https://developers.google.com/appengine/docs/python/users/adminusers
The thing I am uncertain about is whether images, strings, blobs, etc. associated with a particular entity when written will be displayed to two different files: user.py and admin.py. So I want the business owner to be able to post an item and the user to be able to see that same item.