{% extends "layouts/base.html" %} {% block title %}Patient Comments - PX360{% endblock %} {% block content %}

Step 1 — Classified Patient Comments

Classified comments with categories and sentiment

Comments ({{ page_obj.paginator.count }} total)
{% for c in page_obj %} {% empty %} {% endfor %}
# Source Comment Classification Sub-Category Sentiment Negative 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' %}{% elif c.sentiment == 'positive' %}{% elif c.sentiment == 'neutral' %}{% else %}{% endif %}{{ c.get_sentiment_display }} {{ c.negative_keywords }} {{ c.positive_keywords }}
No comments found.
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}