{% block content %} {% set current_user = user %}
{% include 'picture.html' %}


Preview:

See your profile how others see it.

{{ user.first_name }} {{ user.last_name }}

{% if user.headline %}{{ user.headline }}{% else %}Add headline{% end %}

Summary  

{% if user.bio %}{{ user.bio }}{% else %}---{% end %}


Contact  

{% if user.contact %}{{ user.contact }}{% else %}---{% end %}


I am on other sites  

{% if user.other_sites %}{{ user.other_sites }}{% else %}---{% end %}

{% end %}