Issue #3, Removal of the last blind |safe filtering

This commit is contained in:
Roberto Rosario
2014-10-14 05:03:39 -04:00
parent 733dfc3cf7
commit bdd1855ae5
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
#id_right_list,#id_left_list { min-width: 28em; min-height: 13em; }
</style>
<div class="content">
<h2 class="title">{{ title|safe }}</h2>
<h2 class="title">{{ title }}</h2>
<form method='POST' action='' id='assign_remove'>{% csrf_token %}
<input name='action' value='' type='hidden' />

View File

@@ -9,11 +9,11 @@
{% endif %}
{% if content %}
<p>{{ content|safe }}</p>
<p>{{ content }}</p>
{% endif %}
{% for paragraph in paragraphs %}
<p>{{ paragraph|safe }}</p>
<p>{{ paragraph }}</p>
{% endfor %}
</div></div>