Sure, there are a couple different ways to accomplish this. First,
you can make certain pages of your application available only to
administrators of your application. If you set a handler in your
app.yaml file to login: admin, only admins will be able to see and
take action on those pages.
On any of your application's pages you can use
users.is_current_user_admin() function to test if the person that is
logged in is listed as an admin for your application. If that person
is an admin, you can add the modify and delete functionality to your
page only for those users.
-Marzia
On Apr 11, 9:52 am, "Jared Greenwald" <
greenwaldja...@gmail.com>
wrote: