How can I change Django admin language?

后端 未结 3 1355
面向向阳花
面向向阳花 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:13

    You can create /en/admin, /fr/admin/ and so on using i18n_patterns:

    urlpatterns += i18n_patterns(
        url(r'^admin/', include(admin.site.urls)),
    )
    

    (For Django <= 1.7, you must specify a prefix, use i18n_patterns('', ... ))

提交回复
热议问题