Hello,
Do you mean Google App Engine Helper for Django (
http://code.google.com/p/google-app-engine-django/)?
If yes, I assume that there should not be any serious problems with using this helper together with Appengine Admin. appengine_django.models.BaseModel is derived from google.appengine.ext.db.Model. Model attribute definiton also is the same as for usual GAE application.
The only issue could be different URL and view definition patterns between webapp and Django. But it is easy to get around it.
Add specific handler for admin urls in app.yaml:
===
- url: /admin/.*
script: admin_urls.py
===
Create file admin_urls.py:
===
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import admin
import appengine_admin
application = webapp.WSGIApplication([
# Admin pages
(r'^(/admin)(.*)$', appengine_admin.Admin),
], debug = True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
===
I found also
http://code.google.com/p/app-engine-patch/The instructions above should apply also if you are using this project as app-engine-patch does not touch models at all.
Best regards,
--
Valts