{% if username != current_user.username %} {{ username }}'s Tweets {% else %} Your Tweets {% endif %}
{% with tweets = current_user.get_user_tweets(username) %} {% include "tweets.html" %} {% endwith %}
{% extends "base.html" %} {% from "form_macros.html" import render_field %} {% block title %} {% if username != current_user.username %} Pytwask -- {{ username }}'s Tweets {% else %} Pytwask -- Your Tweets {% endif %} {% endblock %} {% block buttons %}
{% endblock %} {% block sidebar %} {% if username != current_user.username %} {% endif %} {% endblock %} {% block content %}