{% extends 'thecommunity/base.html' %} {% block page_title %} - {{ user.username }} - account{% endblock %} {% block body_class %}account_page{% endblock %} {% block js %} {% endblock %} {% block page_body %}

Profile Picture

{% include 'thecommunity/shared/profile_picture.html' with user=user %}
{% if user.profile.linked_via_facebook %} Linked to Facebook
{% else %} Associate Facebook profile
{% endif %} {% if user.profile.linked_via_twitter %} Linked to Twitter
{% else %} Associate Twitter profile
{% endif %}

Change Password

{% csrf_token %}

Email Opt-In Status

{% csrf_token %} {% if user.profile.email_opt_in %}
You are currently opted into periodic e-mail updates.
{% else %}
You are currently opted out of periodic e-mail updates.
{% endif %}
{% endblock %}