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

{{ user }}'s logged in page

This is the page {{ user }} would see if they were logged in.

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

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

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

View {{ user }}'s main page

{% endblock %}