{% extends "default.html" %}
{% block title %}
{% if filtered_game %}
{{filtered_game.icon}} {{filtered_game.name}}
{% else %}
🎲 Game Tracker
{% endif %}
{% endblock %}
{% block subtitle %}
{% if filtered_game %}
{{filtered_game.description}}
{% endif %}
{% endblock %}
{% block content %}
{% if matches %}
Win Rates
Player | Win Rate |
{% for row in winrates %}
{{row.player}} |
{{row.rate}} |
{% endfor %}
Records
Date |
{% if not filtered_game %}Game | {% endif %}
{% for player in players %}{{player.name}} | {% endfor %}
Notes |
{% for match in matches %}
{{match.datetime|date:"M d, Y"}} |
{% if not filtered_game %}{{match.game.name}} | {%endif %}
{% for player in players %}
{% if player == match.winner %}🏆{% endif %}
|
{% endfor %}
{{match.notes}} |
{% endfor %}
Add new {%if filtered_game%}{{filtered_game.name}}{%else%}Match{%endif%} result.
{% if filtered_game %}
Go to all results.{% endif %}
{% else %}
{% if error %}
{% else %}
{% if games %}
No games played{% if filtered_game%} for {{filtered_game.name}}{%endif%}.
Add one.
{% else %}
No games known. Add one.
{% endif %}
{% endif %}
{% endif %}
{% endblock %}