{{ block title }} {{ if player.id_in_group == 1 }} You are Representative A {{ endif }} {{ if player.id_in_group == 2 }} You are Representative B {{ endif }} {{ if player.id_in_group == 3 }} You are Representative C {{ endif }} {{ endblock }} {{ block content }}

A, B, C merger:

All shares must sum to
A B C Proposed by
Submit new proposal:

{{ if player.id_in_group == 1 }}

Chat with {{ C.PLAYER_ID_DICT.2 }} and {{ C.PLAYER_ID_DICT.3 }}

{{ endif }} {{ if player.id_in_group == 2 }}

Chat with {{ C.PLAYER_ID_DICT.1 }} and {{ C.PLAYER_ID_DICT.3 }}

{{ endif }} {{ if player.id_in_group == 3 }}

Chat with {{ C.PLAYER_ID_DICT.1 }} and {{ C.PLAYER_ID_DICT.2 }}

{{ endif }} {{ chat nickname=chat_id channel=ABC}}

A, B merger:

All shares must sum to
A B Proposed by
Submit new proposal:

{{ if player.id_in_group == 1 }}

Chat with {{ C.PLAYER_ID_DICT.2 }}

{{ endif }} {{ if player.id_in_group == 2 }}

Chat with {{ C.PLAYER_ID_DICT.1 }}

{{ endif }} {{ chat nickname=chat_id channel=AB}}

A, C merger:

All shares must sum to
A C Proposed by
Submit new proposal:

{{ if player.id_in_group == 1 }}

Chat with {{ C.PLAYER_ID_DICT.3 }}

{{ endif }} {{ if player.id_in_group == 3 }}

Chat with {{ C.PLAYER_ID_DICT.1 }}

{{ endif }} {{ chat nickname=chat_id channel=AC}}

B, C merger:

All shares must sum to
B C Proposed by
Submit new proposal:

{{ if player.id_in_group == 2 }}

Chat with {{ C.PLAYER_ID_DICT.3 }}

{{ endif }} {{ if player.id_in_group == 3 }}

Chat with {{ C.PLAYER_ID_DICT.2 }}

{{ endif }} {{ chat nickname=chat_id channel=BC}}

{{ endblock }}