{% extends 'layout.html' %} {% block content %}

{{ user.username }}

Since {{ user.created_date }}

{% if not is_self %} {% if not following %}
{% else %}
{% endif %} {% endif %}
{% for book in books.all %}
{{ book.data.title }} by {{ book.authors.first.data.name }}
{% endfor %}
{% endblock %}