Hello,

I try to display an article but there is char like 'é'.
The template is correctly displayed but there is no trace 
of the article (and no error are logged).

the line 'print html' show th article correctky:
<h2>Table des matières</h2>
<ul class="toc"><li><a class="tocSection" href="#id2537437">Erreur
404</a></li></ul>
<h1 class="title" id="id2537437">Erreur 404</h1>
<p>
La page demandée n'existe pas !
</p>

If i remove all the 'é', the page is correct and full

def displayArticle(request, nomArticle):
    article = Article()
    html = article.lecture(nomArticle)
    print html 
    return render_to_response('article.html',
        {'article': html})


It's not a probleme with the template because if i send 'é'
throw it, it's ok.

could you help me

sebastien

-- 
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=en.

Reply via email to