1👍
It seems like 'django.core.context_processors.i18n'
is not called correctly.
This maybe because your view uses django.shorcuts.render_to_response
without context_instance=template.RequestContext(request)
.
A solution is to switch to django.shortcuts.render
.
👤jpic
- [Answered ]-Django, unicode object has no attribute pk
- [Answered ]-Preferred Django App Architecture
- [Answered ]-Django python datetime naive and aware
- [Answered ]-Django: Display choice value not showing
- [Answered ]-How do I sort the queryset by a property's property? django
Source:stackexchange.com