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

Appointment {{ apt_id }}  

Showing details for appointment {{ apt_id }}.



Appointment information
Date     {{ data["date"] }}
Participant     {{ ppt_id }}
Appointment     {{ apt_id }}
Status     {{ data["status"] }}
Study     {{ data["study"] }}
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_created"] }}
Age now     {{ participant["age_now_months"] + ":" + participant["age_now_days"] }}
Age at appointment     {{ data["age_apt_months"] + ":" + data["age_apt_days"] }}
Sex     {{ participant["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 %}