>
GoogleAppEngineのコンソール眺めてたら、下のWarningが出ていた。
You are using the default Django version (0.96). The default Django version will change in an App Engine release in the near future.
どうやら、SDK1.4.2ではDjangoがver1.2.5を使えるのだそうだ。
使うときは以下のように、templateをimportする前に2行追加しておけばいいらしい。
らくちん!
from google.appengine.dist import use_library
use_library('django', '1.2')
from google.appengine.ext.webapp import template