{% extends "base.html" %} {% block title %}PySkat{% endblock %} {% block head %}{% endblock %} {% block content %}
Players
Register players that will take part in the tournament.
  • Registered {{ players | length }}
  • Active {{ players | selectattr("active") | list | length }}
Manage Players
Sessions
Use sessions to group matches and to automatically assign players to matches.
  • Registered {{ sessions | length }}
  • Current {% if current_session %}{{ current_session.name }} ({{ current_session.id }}){% else %}Not Set{% endif %}
Manage Sessions
Matches
Organize players in matches to know who is playing with whom.
  • Registered {{ matches | length }}
Manage Matches
Results
Add the results to the matches to allow evaluation of total scores.
  • Registered {{ results | length }}
  • Missing {% set results_missing = (matches | sum(attribute='size') ) - (results | length) %} {% if results_missing == 0 %} 0 {% else %} {{ results_missing }} {% endif %}
Manage Results
Evaluation
Evaluate the total scores and enjoy the statistics.
Evaluate
{% endblock %}