{% extends "crashstats_base.html" %} {% block page_title %} Your Crash Reports {% endblock %} {% block site_js %} {{ super() }} {% compress js %} {% endcompress %} {% endblock %} {% block content %}

Your Crash Reports

You are signed in as {{ request.user.email }}.

{% if crashes_list %}

Here is a list of the crash reports we have received from you, and processed, in the last 4 weeks:

{% for crash in crashes_list %} {% endfor %}
Date Crash ID
{{ crash.crash_id }}
{% else %}

It seems we have received or processed no crash report from you in the last 4 weeks. It's either good news, or you do not provide your email address when you send us crash reports.

{% endif %}
{% endblock %}