{% extends 'orchestra/base.html' %}
{% load staticfiles %}
{% block title %}Thank you{% endblock %}
{% block main %}
{% block content %}
{% if is_winner %}
Congratulations, you got the task.
{% else %}
Unfortunately, task has been taken.
{% endif %}
{% endblock content %}
{% endblock %}