Blog from the Loft

Thoughts without walls

Blog from the Loft header image 4

Django 0.96 Internationalization

January 6th, 2008 · No Comments · django

I am trying out Django’s i18n support and found a few issues. This only applies if you are using newforms and Django 0.96.
Order of Middleware
First, the order of the middleware is important. It is defined in the documentation, but I missed it the first time around. You have to put the localeMiddleware after SessionMiddleware:
MIDDLEWARE_CLASSES = [...]

[Read more →]

Tags: