{% extends "base.html" %} {% load gravatar %} {% load django_tables2 %} {% block title %}Profile{% endblock %} {% block navbar_items %} {{ block.super }}
Username: {{ user.username }}
Primary Email: {{ user.email }}
Account Created: {{ user.date_joined }}
You have loaned {{ active_loans_count }} out of {{ max_loans }} available copies.
{% render_table active_loans_table %} {% else %}You have no active loans.
{% endif %}