diff --git a/development/common/logs_utils.py b/development/common/logs_utils.py index d790b7b..da7f3d7 100644 --- a/development/common/logs_utils.py +++ b/development/common/logs_utils.py @@ -13,7 +13,8 @@ def __init__(self, data: list) -> None: @property def possible_states(self) -> list: - possible_states = [log[STATE] for log in self.logs if STATE in log.keys()] + possible_states = [log[STATE] for log in self.logs + if STATE in log.keys() and log[STATE] != "gameover"] possible_states.append(ALL_STATES) return list(set(possible_states)) diff --git a/development/templates/development/new_match_details.html b/development/templates/development/new_match_details.html index c805907..eaf9166 100644 --- a/development/templates/development/new_match_details.html +++ b/development/templates/development/new_match_details.html @@ -31,16 +31,14 @@

Match details

- {% for kind in actions_kind %}