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

{{ user }}'s messages

{% with msgs as pagination %} {% include "pagination.html" %} {% for msg in msgs.object_list %}

{{ msg.msg }} {{ msg.date|timesince }} ago

{% endfor %} {% include "pagination.html" %} {% endwith %}

Following {{ following.count }}: {% for u in following %} {{ u }} {% endfor %}

Followed by {{ followers.count }}: {% for u in followers %} {{ u }} {% endfor %}

View the intersection between {{ user }}'s following and

View the difference between {{ user }}'s following and

View {{ user }}'s logged in page

{% endblock %}