{% extends "base.html" %} {% block title %}My Profile{% endblock %} {% block content %}

My Profile: {{ user.first_name }} {{user.last_name}}

Username: {{ user.username }}
Name: {% if user.first_name %} {{ user.get_full_name }} {% else %} No name, please edit profile . {% endif %}
Email: {{ user.email }}
Url: {{ profile.url }}
About: {{ profile.about }}
{% if comment %} {{ comment }} {% endif %} {% if registration %}

Your Registration

Edit Registration

{% endif %} {% if talks %}

Your Submitted Talks

{% for talk in talks %} {% endfor %}
Title Duration Audience Tags  
{{ talk.title }} {{ talk.duration }} {{ talk.audience }} {{ talk.tags }} {% if talk.approved %} Accepted {% else %} Edit {% endif %}
{% endif %} {% endblock content %}