diff -r 9a77edda77b7 -r fda1c66b25f9 project/templates/user/account.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/user/account.html Fri Oct 30 15:09:12 2009 +0530 @@ -0,0 +1,119 @@ +{% extends "base.html" %} +
  • kauaerangastore@xtra.co.nz
  • + +{% 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 form %} + +

    Wifi

    +

    The following form will help the SciPy.in team identify wireless +requirements.

    +
    + + {{ form }} +
    + +
    +{% endif %} +{% if registration %} +
    +

    Your Registration

    +

    + Edit Registration + {% if registration.sponsor %} + {% else %} + | Your invoice (html) (pdf)

    + {% endif %} +

    +
    +{% endif %} +{% if talks %} +
    +

    Your Submitted Talks

    + + + + + + +{% for talk in talks %} + + + + + + + +{% endfor %} +
    TitleDurationAudienceTags 
    {{ talk.title }}{{ talk.duration }}{{ talk.audience }}{{ talk.tags }} + {% if talk.approved %} + Accepted + {% else %} + Edit + {% endif %} +
    +
    +{% endif %} +{% endblock content %}