{% extends 'includes/base.html' %} {% block content %}

profile

Update your artist info/socials for your patrons to find you. View Profile

{% for f in form %} {% if f.name == 'csrf_token' %} {{ f }} {% elif f.name == 'bio' %} {{ f.label }} {% else %} {{ f.label }} {{ f(value=current_user[f.name]) }} {% endif %} {% endfor %}
    {%- for field, errors in form.errors.items() %}
  • {{ form[field].label }}: {{ ', '.join(errors) }}
  • {%- endfor %}
{% endblock %}