{% extends "base.html" %} {% from "form_macros.html" import render_field %} {% block title %} {% if not general %} Pytwask -- {{ current_user.username }}'s Timeline {% else %} Pytwask -- Recent Timeline {% endif %} {% endblock %} {% block buttons %} {% endblock %} {% block sidebar %} {% if not general %} {% endif %} {% endblock %} {% block content %}

{% if not general %} {{ current_user.username }}'s Timeline {% else %} Recent Timeline {% endif %}


{% if not general %} {% with tweets = current_user.get_user_timeline() %} {% include "tweets.html" %} {% endwith %} {% else %} {% with tweets = get_general_timeline() %} {% include "tweets.html" %} {% endwith %} {% endif %}
{% endblock %}