{% extends "users/base.html" %}{% load cache %} {% block title %}Edit profile: {% endblock %} {% block content %} {% if object.id != user.id %}

Sorry, you cannot edit someone else's profile.

{% else %}

Edit your profile

All fields are entirely optional. Note that you can not change your username, real name, or e-mail address. If you wish to change these, please contact the staff.

{% if form.errors %}

Oops! There's a problem on your form:

{% endif %}
{% csrf_token %}
Profile {% for field in form %} {% if field.label = 'Open board links' %}
Settings {% endif %}

{{ field.errors }} {{ field.label_tag }} {{ field }} {{ field.help_text }}

{% endfor %}

{% endif %} {% endblock %} {% block aside %} {{ block.super }}
{% csrf_token %}
Your songs


{{ settings_form.non_field_errors }}

Settings

{% csrf_token %} {{ settings_form.as_p }}

{% endblock %}