{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Change profile picture" %}{% endblock %} {% block content %}

{% trans "Change profile picture" %}

{% trans "Uploading a new picture" %}

{% trans "Click the file browse button and choose an image file from your computer. Click 'Save'." %}

{% trans "Cropping an existing picture" %}

{% trans "Profile pictures are square shaped. If your picture is not square shaped, you can choose a 'point of interest' by clicking the full image preview on the right. Click on the center point you would like your profile picture be around, then click 'Save'." %}

{% csrf_token %}
{{ form.picture }}
{% trans "Return to profile" %}
{% endblock %} {% block css %} {{ form.media.css }} {{ block.super }} {% endblock %} {% block javascript %} {{ block.super }} {{ form.media.js }} {% endblock %}