Changes between Initial Version and Version 2 of Ticket #12892


Ignore:
Timestamp:
Feb 17, 2010, 7:05:07 AM (15 years ago)
Author:
Ramiro Morales
Comment:

Re-formated description. Please use preview (and WikiFormatting for complex descriptions) as suggested in the notes displayed before you open a ticket.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12892 – Description

    initial v2  
    11I have this in my urls.py:
     2{{{
    23    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    3 
     4}}}
    45and this in my settings.py:
     6{{{
    57LANGUAGE_CODE = 'fr'
    68# (same with 'fr-fr')
    7 
     9}}}
    810If I go to http://localhost:8000/admin/doc/models/auth.user/
    911
    1012I get:
     13{{{
    1114Unicode error hint
    1215
     
    6265Exception Type: UnicodeEncodeError at /admin/doc/models/auth.user/
    6366Exception Value: 'ascii' codec can't encode character u'\xe8' in position 4: ordinal not in range(128)
    64 
     67}}}
    6568
    6669If I switch to:
     70{{{
    6771LANGUAGE_CODE='en-US'
    68 
     72}}}
    6973the problem disappears.
    7074
Back to Top