NDOJ/templates/problem/related_problems.html
2023-01-27 19:15:37 -06:00

19 lines
No EOL
743 B
HTML

{% if related_problems %}
<div class="content-description">
<h4>{{_('Recommended problems')}}:</h4>
<ul style="list-style-type: none; margin: 0.3em;">
{% for problem in related_problems %}
<li>
{% if problem.id in completed_problem_ids %}
<i class="solved-problem-color fa fa-check-circle"></i>
{% elif problem.id in attempted_problems %}
<i class="attempted-problem-color fa fa-minus-circle"></i>
{% else %}
<i class="unsolved-problem-color fa fa-minus-circle"></i>
{% endif %}
<a href="{{url('problem_detail', problem.code)}}">{{ problem.name }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}