Changes between Initial Version and Version 3 of Ticket #3924


Ignore:
Timestamp:
Apr 4, 2007, 9:10:10 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Fixed formatting in description.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3924

    • Property Status newreopened
  • Ticket #3924 – Description

    initial v3  
    33My models.py has a correct coding declaration, it is # -*- coding: UTF-8 -*-. My admin site allways works with previous svn revisions but it doesn´t work with the latest revision 4926 from the developer code. I´m working with language-code "es-es".
    44
    5 The problem is related with the use of non-ascii characters as the return value of __str__ with models.ForeignKey and models.ManyToManyField.
     5The problem is related with the use of non-ascii characters as the return value of {{{__str__}}} with models.!ForeignKey and models.!ManyToManyField.
    66
    77Thank you very much.
    88
    9 Below youd can find a piece of code.
     9Below you can find a piece of code.
    1010
    11 
     11{{{
    1212UnicodeDecodeError at /admin/articulos/articulo/add/
    1313'ascii' codec can't decode byte 0xc3 in position 8: ordinal not in range(128)
     
    23231       {% load admin_modify adminmedia %}
    24242       {% output_all bound_field.form_fields %}
     25}}}
Back to Top