Does anybody know how I can get built-in Django tag url to work in the wrapped template renderer in google-app-engine?
It fails to create a “nice” url because it expects Django style url mappings, and since I’m using webapp.WSGIApplication I understand how it can be difficult for it to work. Basically I want to know if there is an alternative that will work with google-app-engine style url mappings.
Thanks in advance for any input.
It’s not possible – that function depends on using Django’s routing system, which webapp doesn’t. More to the point, webapp doesn’t provide a reverse-mapping function at all.