{% extends "_notIndex.html" %}
{% block title %}{{ user }}'s Home Page{% endblock %}
{% block bodycontent %}
Welcome to your personal homepage, {{ user }}!
{% if driverides %}
From | To | Driver | Departing | Contact | Modify |
---|---|---|---|---|---|
{{ ride.start_point_title }} | {{ ride.destination_title }} | {{ user }} | {{ ride.part_of_day }} {{ ride.jsmonth }}-{{ ride.jsday }}-{{ ride.jsyear }} |
{{ ride.contact }} |
Name | {% ifequal ride.doOrPu 0 %}Drop Off Location {% else %}Pick Up Location{% endifequal %} | Contact | Modify |
---|---|---|---|
{{ p.fullname }} | {{ p.location }} | {{ p.contact }} |
There are no passengers registered for this ride.
{% endif %}You are not a driver for any rides.
{% endif %} {% if passengerrides %}From | To | Driver | Departing | Contact | Modify | |
---|---|---|---|---|---|---|
{{ ride.start_point_title }} | {{ ride.destination_title }} | {{ ride.drivername }} Rate Your Driver |
{{ ride.part_of_day }} {{ ride.jsmonth }}-{{ ride.jsday }}-{{ ride.jsyear }} | {{ ride.contact }} |
Name | {% ifequal ride.doOrPu 0 %}Drop Off Location {% else %}Pick Up Location{% endifequal %} | Contact | Modify |
---|---|---|---|
{{ p.fullname }} | {{ p.location }} | {{ p.contact }} |
There are no passengers registered for this ride.
{% endif %} {% if not forloop.last %}You are not a passenger for any rides.
{% endif %} {% endblock %}