{% extends 'base.html' %} {% load static %} {% block title %}{{ profile_user.username }} - Packs{% endblock %} {% block content %}
{% if profile.avatar %} {{ profile_user.username }} avatar {% else %}
{{ profile_user.username|first|upper }}
{% endif %}

{{ profile_user.username }}

Joined {{ profile.joined|date:"F j, Y" }}

{% if is_owner %}

Account Settings

{% endif %}

Bio

{% if is_owner %} {% if messages %} {% endif %}
{% csrf_token %}
{{ bio_form.bio.errors }} {{ bio_form.bio }}
{% else %} {% if profile.bio %}

{{ profile.bio }}

{% else %}

{{ profile_user.username }} hasn't written a bio yet.

{% endif %} {% endif %}

Packs by {{ profile_user.username }}

{% comment %} Placeholder — replace with real Pack objects when the library model lands. {% endcomment %}

No packs yet

This creator hasn't published any datapacks.

{% endblock %}