{% block title %}
Tweets by {{ twitter_user.name }}
{% endblock %}
{{ twitter_user }}
{% include 'twitter/includes/user.html' with user=twitter_user account=account perms=perms only %}
{% include 'twitter/includes/annual_tweet_counts.html' with user=twitter_user only %}
{% include 'twitter/includes/nav_tabs.html' with user=twitter_user active='tweets' only %}
{% if twitter_user.is_private %}
This user is private.
{% endif %}
{% include 'twitter/includes/tweet_list.html' with tweet_list=tweet_list page_obj=page_obj perms=perms only %}