{% extends "base.html" %} {% block content %}

💭 Thought Details

← Back to List
{{ thought.category }} ID: {{ thought.id }}
{{ thought.timestamp.strftime('%B %d, %Y at %I:%M %p') }}
Content

{{ thought.content }}

{% if thought.tags %}
Tags
{% for tag in thought.tags %} {{ tag }} {% endfor %}
{% endif %} {% if thought.emotion %}
Emotion
{{ thought.emotion }}
{% endif %}
{% if thought.importance %}
Importance Score
{{ "%.1f"|format(thought.importance * 100) }}%
Score: {{ "%.3f"|format(thought.importance) }}
{% endif %}
Statistics
Word count: {{ thought.content.split()|length }} Character count: {{ thought.content|length }}
{% endblock %}