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

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

{% 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 %}