Changes between Initial Version and Version 1 of Ticket #34455


Ignore:
Timestamp:
Apr 4, 2023, 6:12:03 AM (13 months ago)
Author:
Oussama Jarrousse
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34455 – Description

    initial v1  
    11In my django project urls.py file I have the following setup:
    22
     3```
    34from django.conf.urls.i18n import i18n_patterns
    45from django.contrib import admin
     
    1213    path("admin/", admin.site.urls), prefix_default_language=False
    1314)
     15```
    1416
    1517In versions Django==4.1.7 (or prior), I was able to navigating to /admin/ without having to add the language prefix.
Back to Top