{% extends 'layouts/base.html' %} {% load filters %} {% block javascripts %} {% endblock %} {% block content %}

Id решения {{ solution.id }}
Пользователь {{ solution.user.username }}
Задача {{ solution.task.name }}
Время отправки {{ solution.time_sent }}
Язык {{ solution.language.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 %}