{% extends "base_event.html" %} {% block event_title %}Round Result{% end %} {% block event_content %}

Winner => {{ ",".join([player['name'] for player in winners]) }}

{% for hand in hand_info %} {% end %}
player hand hole-high hole-low
{{ [player['name'] for player in round_state['seats'] if player['uuid']==hand['uuid']][0] }} {{ hand['hand']['hand']['strength'] }} {{ hand['hand']['hole']['high'] }} {{ hand['hand']['hole']['low'] }}
{% end %}