The problem is not in templates. Probably either a view or a template
tag does something wrong to the caption string. If Django hides the
traceback, try testing each module separately. The simplest way to
evade the "raise wrapped" is to raise an exception right _before_
rendering data prepared by your view. Django will display excellent
traceback and expose locals() from the view. You can also pass the
data directly to template filters or tags to see the traceback.

On 12 ноя, 21:24, NMarcu <marcu.nico...@gmail.com> wrote:
> Hello all,
>
>    How to use French accent on django template? It's very strange. in
> one template is working very well, but in other(templatetag) not, I
> got this error:
>
> TemplateSyntaxError at /operators/ajax
>
> Caught an exception while rendering: 'ascii' codec can't encode
> character u'\xe9' in position 2: ordinal not in range(128)
>
> Do you have any idea what I'm doing wrong?
> My template look like this:
> {% load i18n %}
> <th class="editable_field">
>     {{ column.caption }}
>     {% if column.href %}
>         <a href="{{ column.href }}">Sort</a>
>     {% endif %}
>     {% if column.filtered %}
>         (filtered)
>     {% endif %}
> </th>
>
>  {{ column.caption }}  -> return a French word.

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=.


Reply via email to