{% extends 'base_main.html' %} {% load filters %} {% block main %}

Id решения {{ solution.id }}
Задача {{ solution.task.name }}
Язык
Результат {% if solution.result == testing_status %} {% endif %}{{ solution.result }}

Файлы решения

{% for entity in solution.files %}
{{ entity.filename }}
{{ entity.text }}

{% endfor %} {% if solution.task.creator == user or user.username in solution.task.editors or solution.set and solution.set.creator == user or solution.set and user.username in solution.set.editors %}

Лог тестрования

{% for key, value in solution.extras.items %}
{{ key }}
Затраченное время: {{ value.time_spent }} мс
{{ value.predicted }}
{{ value.output }}
{% endfor %} {% endif %} {% endblock %}