{% extends "outer_main.html" %} {% block title %}Home{% endblock title %} {% block innerjs %} {% endblock innerjs %} {% block content %}

{{profile.nick}}

age // {{profile.age}}
gender // {{profile.gender}}
wants // {{profile.wants}}
email // {{profile.email}}
{% for pic in pictures %} {% endfor %}
{{ addpic_html }}

Invitations

{% for invitee in invitees %}

{{invitee.inviter.nick}}

age // {{invitee.inviter.age}}
gender // {{profile.gender}}
wants // {{invitee.inviter.wants}}
email // {{invitee.inviter.email}}

Accept

Decline

{% for pic in invitee.inviter.pictures %} {% endfor %}
{% endfor %}

You Invited

{% for inviter in inviters %}

{{inviter.invitee.nick}}

age // {{inviter.invitee.age}}
gender // {{inviter.invitee.gender}}
wants // {{inviter.invitee.wants}}
email // {{inviter.invitee.email}}

Cancel

Report

{% for pic in inviter.invitee.pictures %} {% endfor %}
invitation dates: {{inviter.date_date_1}} {{inviter.date_date_2}} {{inviter.date_date_3}}
invited on: {{inviter.invited_date}}
{% endfor %}

You Accepted

{% for accepter in accepters %}

{{accepter.invitee.nick}}

age // {{accepter.invitee.age}}
gender // {{accepter.invitee.gender}}
wants // {{accepter.invitee.wants}}
email // {{accepter.invitee.email}}

Cancel

Report

{% for pic in accepter.invitee.pictures %} {% endfor %}
{% endfor %}

Accepted you

{% for acceptee in acceptees %}

{{acceptee.inviter.nick}}

age // {{acceptee.inviter.age}}
gender // {{acceptee.inviter.gender}}
wants // {{acceptee.inviter.wants}}
email // {{acceptee.inviter.email}}

Cancel

Report

{% for pic in acceptee.inviter.pictures %} {% endfor %}
{% endfor %}
{% endblock content %}