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

Search

{% csrf_token %}
{% if notfound %}

Couldn't find any tweets for this profile!

{% endif %} {% if profile %}
{{ profile.name }} timeline
Negative
{{ profile.negative|floatformat:-2 }}%
Neutral
{{ profile.neutral|floatformat:-2 }}%
Positive
{{ profile.positive|floatformat:-2 }}%
Categories
{% for key, value in profile.categories.items %} {% endfor %}
Category Count
{{ key }} {{ value }}
{% endif %}
{% endblock %}