{% extends "layout/basic.html" %} {% block content %}
| {{ _('ID') }} | {{ _('Problem') }} | {{ _('Difficulty') }} | {{ _('Solved by') }} |
|---|---|---|---|
| {{ t.pid }} | {{ t.title }} | {% if t.difficulty %}{{ t.difficulty }}{% endif %} |
{{ t.solved }} / {{ students }} ({{ t.pct }}%)
|
| {{ _('Username') }} | {{ _('Solved') }} | {{ _('Grade') }} | {{ _('Delivered') }} |
|---|---|---|---|
| {{ r.uname }} | {{ r.solved }} / {{ totalProblems }} | {{ r.grade }} | {% if r.delivered %}{{ _('Yes') }}{% else %}{{ _('No') }}{% endif %} |