{{ extends 'global/Page.html' }}
{{ block title }}Round {{ player.round_number }}: Summary{{ endblock }}
{{ block content }}
You submitted the following for Round {{ player.round_number }}:
Rankings
| Rank | Island |
{{ for r in ranks }}
| {{ r.rank }} |
{{ if r.filled }}
{{ r.island }}
{{ else }}
{{ endif }}
|
{{ endfor }}
Probabilities of Being Assigned
| Rank | Island | Probability (%) |
{{ for b in beliefs }}
| {{ b.rank }} |
{{ if b.filled }}
{{ b.island }}
{{ else }}
{{ endif }}
|
{{ if b.filled }}{{ b.belief }}%{{ endif }} |
{{ endfor }}
{{ next_button }}
{{ endblock }}