{% extends 'base.html' %} {% load static %} {% load markdown %} {% 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 }}

Supports Markdown — headings, lists, links, code, tables and more.

{% else %} {% if profile.bio %}
{{ profile.bio|markdown }}
{% else %}

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

{% endif %} {% endif %}

Packs by {{ profile_user.username }}

{% for project in projects %} {% include 'library/_project_card.html' %} {% empty %}

No packs yet

This creator hasn't published anything yet.

{% endfor %}
{% endblock %} {% block extra_js %} {% if is_owner %} {% endif %} {% endblock %}