{% extends "admin/base.html" %}
{% block stylesheets %}
{% endblock %}
{% block content %}
{{ team.name }}
{{ team.email }}
{%if place %}
{{ place }} place
{% endif %}
{%if score %}
{{ score }} points
{% endif %}
IP Addresses
IP Address |
Last Seen |
{% for addr in addrs %}
{{ addr[0]|long2ip }} |
|
{% endfor %}
Awards
Name |
Description |
Date |
Value |
Category |
Icon |
Delete |
{% for award in awards %}
{{ award.name }} |
{{ award.description }} |
|
{{ award.value }} |
{{ award.category }} |
{{ award.icon }} |
|
{% endfor %}
Solves
Challenge |
Submitted |
Category |
Value |
Time |
Delete |
{% for solve in solves %}
{{ solve.chal.name }} |
{{ solve.flag }} |
{{ solve.chal.category }} |
{{ solve.chal.value }} |
|
|
{% endfor %}
Missing
Challenge |
Category |
Value |
Mark Solved |
{% for chal in missing %}
{{ chal.name }} |
{{ chal.category }} |
{{ chal.value }} |
|
{% endfor %}
Wrong Keys
Challenge |
Submitted |
Time |
Delete |
{% for wrong_key in wrong_keys %}
{{ wrong_key.chal.name }} |
{{ wrong_key.flag }} |
|
|
{% endfor %}
{% endblock %}
{% block scripts %}
{% endblock %}