{% extends "base.html" %}
{% block content %}
Stats
| due | hour | 6h | day | week | month |
| {{ total_due }}
{% if total_due == 0 %} next due at {{ first_due.due|date:"D, F j G:i:s" }}{% endif %} |
{{ next_hour_due }} |
{{ next_six_hours_due }} |
{{ next_day_due }} |
{{ next_week_due }} |
{{ next_month_due }} |
- tested:
- {{ total_tested }}
- untested:
- {{ total_untested }}
- percent correct:
- {{ percent_right }}
{% for test in recent_tests %}
{% if test.correct %}
|
|
{% else %}
|
{% endif %}
{% endfor %}
| rungs | priority | ease |
|
{% for r in rungs %}| {{ r.cards }} | {% endfor %}
|
{% for p in priorities %}
| {{ p.priority }} |
{{ p.tested }} |
{{ p.untested }} |
{% endfor %}
|
|
{% endblock %}