{% 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 registration %}

My Registration Details

{{ event.get_full_name }} ID: {{ registration.slug }}
Attending Conference: {% if registration.conference %}Yes{% else %}No{% endif %}
Attending Tutorials: {% if registration.tutorial %}Yes{% else %}No{% endif %}
Attending Sprints: {% if registration.sprint %}Yes{% else %}No{% endif %}
Organisation: {{ registration.organisation }}
Occupation: {{ registration.occupation }}
City: {{ registration.city }}
Post Code: {{ registration.postcode }}
Phone Number: {{ registration.phone_num }}
Allow Contact: {% if registration.allow_contact %}Yes{% else %}No{% endif %}
Registered On: {{ registration.submitted|date:"jS F Y H:i" }}
Last Modified On: {{ registration.last_mod|date:"jS F Y H:i" }}

Edit Registration

{% endif %} {% if talks %}

My 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 %}