{% extends 'twitter/base.html' %} {% block breadcrumbs %}
  • Home
  • Twitter
  • {{ twitter_user }}
  • Tweet
  • {% endblock %} {% block content %}

    {% block title %} A Tweet by {{ twitter_user.name }} {% endblock %} {{ twitter_user }}

    {% if twitter_user.is_private %} {# The `tweet` object will be None, too. #}

    This user is private.

    {% else %} {% with tweet.get_previous as previous_tweet %} {% with tweet.get_next as next_tweet %} {% if previous_tweet or next_tweet %} {% endif %} {% endwith %} {% endwith %} {% endif %}
    {% include 'twitter/includes/user.html' with user=twitter_user account=account perms=perms only %}
    {% endblock content %}