{% extends "base.html" %} {% load static i18n %} {% load crispy_forms_tags %} {% load thumbnail %} {% block title %}{{ user.username|title }}{% endblock %} {% block head %} {% endblock head %} {% block content %}

{{ user.username|title }}

{% if user.name %}

{{ user.name }}

{% endif %} {% if user.picture %} {% thumbnail user.picture "x250" as im %} Picture Profile {% endthumbnail %} {% else %} No Profile Picture {% endif %}
{% csrf_token %} {{ form|crispy }}
{% endblock %}