{% extends "base.html" %} {% load static %} {% block title %}My Records - {{ project_name }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Health & Records

Manage your vaccinations and hospital reports in one place.

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% for record in records %}
{{ record.vaccine_name }}
Dose {{ record.dose_number }}
{{ record.date_taken|date:"M d, Y" }} {{ record.center_name|default:record.location }}
{% if record.photo %} {% endif %}

Location: {{ record.location }}

{% if record.notes %}

{{ record.notes|truncatechars:100 }}

{% endif %}
{% empty %}

No vaccination records

Keep track of your immunizations.

Add Record
{% endfor %}
{% for report in reports %}
{{ report.title }}

{{ report.hospital_name }}

{{ report.report_date|date:"M d, Y" }} {% if report.next_test_date %} Next: {{ report.next_test_date|date:"M d, Y" }} {% endif %}
{% if report.description %}

{{ report.description|truncatechars:120 }}

{% endif %}
{% if report.allow_notifications %}Notifications On{% else %}Notifications Off{% endif %} {{ report.created_at|timesince }} ago
{% empty %}

No hospital reports

Upload your medical reports for safekeeping and reminders.

Upload First Report
{% endfor %}
{% endblock %}