albrechtjan / workload

Survey web application for TU Dresden
survey.zqa.tu-dresden.de
GNU Affero General Public License v3.0
0 stars 0 forks source link

unicode error bei vorlesungen mit umlaut #24

Closed KonstantinSchubert closed 10 years ago

KonstantinSchubert commented 10 years ago

Das Problem ist, dass ich in views.py den unicode zu einem normalen ascii string caste (mit der str() - methode), damit im Template nach Anwendung des {{ foo | safe}} safe-tags ein String herauskommt, den ich in den Javascript-code legen kann.

Das beste Fix wird sein, den String-cast in views.py zu umgehen. und irgendwie anderweitig im template die daten ins javascript zu fuettern. Vielleicht gibt es zur "|safe"-option noch eine alternative, zum Beispiel das hier https://djangosnippets.org/snippets/201/

KonstantinSchubert commented 10 years ago

FIXED by adding |jsonify filter befoer the |safe filter.