The Problm occurs when Iset DJANGO_STYLE_MODEL_KIND = False in the file "settings.py". The datastore model entity of admin users in GAE will change from auth_users to Users, then try to login to admin and server error occured. That is, if DJANGO_STYLE_MODEL_KIND set to "False", the Django admin funciton will fail because of the name of data model store in the datastore of GAE. Django admin seems not to read the datastore entity "Users" and only read the original settings. auth_users and any other django style admin model doesn't work when DJANGO_STYLE_MODEL_KIND = False.
The Sample application shows that "there was an error while handling your request." after setting DJANGO_STYLE_MODEL_KIND = False. It supposed to show Django Admin pages,either 1.1 or 1.0 have the same problem as above.
I try to file this problem to app-engine-patch issue report page on google, but nobody answer this question. I hopes some body can help me because I hope extra SOAP function need to integrated into Django but it cannot read the data without DJANGO_STYLE_MODEL_KIND = False.
Thank you so much!