Changes between Initial Version and Version 3 of Ticket #3924
- Timestamp:
- Apr 4, 2007, 9:10:10 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3924
- Property Status new → reopened
-
Ticket #3924 – Description
initial v3 3 3 My 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". 4 4 5 The problem is related with the use of non-ascii characters as the return value of __str__ with models.ForeignKey and models.ManyToManyField.5 The problem is related with the use of non-ascii characters as the return value of {{{__str__}}} with models.!ForeignKey and models.!ManyToManyField. 6 6 7 7 Thank you very much. 8 8 9 Below you dcan find a piece of code.9 Below you can find a piece of code. 10 10 11 11 {{{ 12 12 UnicodeDecodeError at /admin/articulos/articulo/add/ 13 13 'ascii' codec can't decode byte 0xc3 in position 8: ordinal not in range(128) … … 23 23 1 {% load admin_modify adminmedia %} 24 24 2 {% output_all bound_field.form_fields %} 25 }}}