{% extends "main.html" %} {% load i18n %} {% load contest_extras %} {% block title %}{% trans "Entry " %} {{ entry.id }}{% endblock %} {% block content %}
| id | Opponent | Your role (x/o) | {% trans "Result" %} |
|---|---|---|---|
| {{ fight.id }} | {% if fight.x.user == entry.user %} {{ fight.o }} {% else %} {{ fight.x }} {% endif %} | {% if fight.x.user == entry.user %}x{% else %}o{% endif %} | {{ fight|result_of:entry.user }} |
{{ entry.code }}
{% else %}
You have to be logged in as admin to see the code.
{% endif %}
{% endblock %}