{% load static %} {% include 'bases/head_base.html' %} Settings {% include 'bases/navbar_base.html' %}

{% if successful_changes|length > 0 %} Your {% for change in successful_changes %} {{ change }} {% if forloop.counter < successful_changes|length|add:"-1" %}, {% elif forloop.counter == successful_changes|length|add:"-1" %} and {% endif %} {% endfor %} {% if successful_changes|length == 1 %} has {% else %} have {% endif %} been updated successfully. {% if errors %} Form errors have been marked in red. {% endif %} {% endif %}

{% csrf_token %}

Profile

{% if 'first_name' in errors %}

First name cannot be blank

{% endif %}

{% if 'last_name' in errors %}

Last name cannot be blank

{% endif %}

{% if 'biography' in errors %}

Biography must be shorter than 300 characters

{% endif %}

{% if 'url' in errors %}

URL is invalid

{% endif %}

Account

Change Password

{% if 'old_pword' in errors %}

Old password is incorrect

{% elif 'pword_conf' in errors %}

Password confirmation didn't match password

{% endif %}

Notifications


{% if user.is_superuser %}

CollaboDev Admin

Manage users

GitHub Integration

Update CollaboDev

Reset CollaboDev to its original settings

{% endif %}

Finished?

{% include 'bases/modal_base.html' %} {% include 'bases/footer_base.html' %}