{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Patient Comments" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Classified comments with categories and sentiment" %}
| # | {% trans "Source" %} | {% trans "Comment" %} | {% trans "Classification" %} | {% trans "Sub-Category" %} | {% trans "Sentiment" %} | {% trans "Negative" %} | {% trans "Positive" %} |
|---|---|---|---|---|---|---|---|
| {{ c.serial_number }} | {{ c.get_source_category_display }} | {{ c.comment_text }} | {{ c.get_classification_display }} | {{ c.get_sub_category_display }} | {% if c.sentiment == 'negative' %} {{ c.get_sentiment_display }} {% elif c.sentiment == 'positive' %} {{ c.get_sentiment_display }} {% elif c.sentiment == 'neutral' %} {{ c.get_sentiment_display }} {% else %} {{ c.get_sentiment_display }} {% endif %} | {{ c.negative_keywords }} | {{ c.positive_keywords }} |
|
{% trans "No comments found." %} |
|||||||