I'm in the process of starting a new project on App Engine and Brandon's advice made me think.
Many features of Django don't work on Google App Engine: the admin interface and the modeling framework for example.
Considering that App Engine already has a simple framework built-in ("webapp") and I can freely pick from the many Python templating solutions (including Django's) without tying myself to a relatively heavy weight (but in this case neutered) framework what are the top features that I would miss the most if I don't go with Django?
Background: I only have minimal Django experience and I'm considering using Mako templates (for speed).