{% load smartif %}
{% ifnotequal confidence None %}
{% if confidence >= 95 %}
{{ confidence|stringformat:"d" }} %
{% endif %}
{% if confidence < 95 and confidence >= 90 %}
{{ confidence|stringformat:"d" }} %
{% endif %}
{% if confidence < 90 %}
{{ confidence|stringformat:"d" }} %
{% endif %}
{% else %}
N/A
{% endifnotequal %}