2023-01-27 23:11:10 +00:00
|
|
|
{% if last_attempted_problems%}
|
|
|
|
<div class="sidebox">
|
2023-03-03 00:43:15 +00:00
|
|
|
<h3><i class="fa fa-bullseye"></i>{{ _('Last unsolved') }}</h3>
|
2023-01-27 23:11:10 +00:00
|
|
|
<div class="sidebox-content" style="padding: 0; border: 0">
|
|
|
|
<table class="table feed-table">
|
|
|
|
<tbody>
|
|
|
|
{% for problem in last_attempted_problems %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url('problem_detail', problem.code) }}">{{ problem.name }}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url('submission_status', problem.last_submission) }}">{{ problem.last_submission }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-03 19:01:49 +00:00
|
|
|
{% endif %}
|