{% extends "base.html" %} {% load humanize %} {% block content %} {% for toot in toots %}

{{ toot.account.display_name }} @{{ toot.account.username }} {{ toot.created_at |naturaltime }}
{{ toot.content | safe }}

{% endfor %} {% endblock %}