{% 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 %}
{% include 'bases/modal_base.html' %}
{% include 'bases/footer_base.html' %}