How can I change Django admin language?

后端 未结 3 1364
面向向阳花
面向向阳花 2021-02-13 00:31

I have a django 1.6 site with i18n working. I can change the frontend language with a select box in the top of the template, but I don\'t know if there is a django app or trick

3条回答
  •  长发绾君心
    2021-02-13 01:14

    In your settings.py just add 'django.middleware.locale.LocaleMiddleware' to your MIDDLEWARE_CLASSES setting, making sure it appears after 'django.contrib.sessions.middleware.SessionMiddleware'.

提交回复
热议问题