Skip to content

Commit

Permalink
Fix bad display of some characters
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchezfauste committed Jul 12, 2018
1 parent e8253c5 commit feaf51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal/templates/portal/module_detail_aos_quotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ <h2 class="mt-4">{% trans "Line items" %}</h2>
{% endif %}
<td>
{% if line.item_description %}
<span style="color: #007bff;" data-toggle="tooltip" title="{{line.item_description}}" data-placement="right">{{line.name}}</span>
<span style="color: #007bff;" data-toggle="tooltip" title="{{line.item_description|safe}}" data-placement="right">{{line.name|safe}}</span>
{% else %}
{{line.name}}
{{line.name|safe}}
{% endif %}
</td>
<td>{{line.product_list_price|floatformat:2}}{{currency_symbol}}</td>
Expand Down

0 comments on commit feaf51a

Please sign in to comment.