{% load i18n %} {% if sentiment %}
{% trans "AI Sentiment Analysis" %}

{{ icon }}

{% if sentiment.sentiment == 'positive' %} {% trans "Positive" %} {% elif sentiment.sentiment == 'negative' %} {% trans "Negative" %} {% else %} {% trans "Neutral" %} {% endif %}
{% trans "Score" %}:
{{ score_formatted }}
{% trans "Confidence" %}:
{{ confidence_formatted }}
{% if sentiment.keywords %}
{% trans "Keywords" %}:
{% for keyword in sentiment.keywords|slice:":5" %} {{ keyword }} {% endfor %}
{% endif %}
{% trans "View Details" %}
{% endif %}