{% extends "base.html" %} {% block header %} {% endblock header %} {% block content %}

Appointments ({{ apt_id }})

Showing details about appointmenmt {{ apt_id }}. To modify, hit the "Modify appointment" button.


Appointment information
Participant     {{ ppt_id }}
Appointment     {{ apt_id }}
Status     {{ data["status"] }}
Study     {{ data["date"] }}
Made on the     {{ data["date_created"] }}
Last updated     {{ data["date_updated"] }}
Taxi address     {{ data["taxi_address"] }}
Taxi booked?     {{ data["taxi_isbooked"] | safe }}
Comments?     {{ data["comments"] }}
Participant information
Name     {{ participant["name"] }}
Added on     {{ participant["date_added"] }}
Age     {{ participant["age_now_months"] + ":" + participant["age_now_days"] }}
Sex     {{ data["sex"] }}
Comments     {{ participant["comments"] }}
Contact details
Phone     {{ participant["phone1"] }}
E-mail     {{ participant["email1"] }}
Phone 2     {{ participant["phone2"] }}
E-mail 2     {{ participant["email2"] }}
Taxi address     {{ participant["house"] }}
Postcode     {{ data["postcode"] }}
City     {{ participant["city"] }}
{% endblock content %}