Skip to content

Commit

Permalink
Unescape faq item. Closes #236
Browse files Browse the repository at this point in the history
  • Loading branch information
fgaudin committed Sep 22, 2011
1 parent 033f04f commit 02575ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/faq/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{% for question in category.questions.all %}
<div class="question-answer">
<div class="question"><a name="question-{{ question.id }}">{{ question }}</a></div>
<div class="answer">{{ question.answer }}</div>
<div class="answer">{% autoescape off %}{{ question.answer }}{% endautoescape %}</div>
</div>
<a href="#category-{{ category.id }}">{% trans "back to category" %}</a>
-
Expand Down

0 comments on commit 02575ca

Please sign in to comment.