UEWBot / dipvis

Django-based visualiser for tournaments for the boardgame Diplomacy
GNU General Public License v3.0
7 stars 5 forks source link

Make scores for individual games more obvious #210

Closed UEWBot closed 1 year ago

UEWBot commented 2 years ago

A number of possible improvements:

  1. Add the score to the game details page
  2. Add "and scores" to the link from game details to SC chart
  3. Add a separate "game summary" page similar to the game summary page for the whole tournament ("2 centres as Russia", "Eliminated in 1904", etc)
UEWBot commented 2 years ago

Now that we have scores on the game details page (1), there's no point adding "and scores" to the link to the SC chart (2). The game summary page may still be useful. On the game details page, it would still be nice to get rid of the "year" part except for eliminations ("9 centres (2-way tied board top) in 1907" when we've already said "Last year played is 1907").

UEWBot commented 2 years ago

Scores on the game details page are a little too detailed- we really only need 2 decimal places...

UEWBot commented 1 year ago

To remove the year, we'd need to add another boolean parameter (year) to GamePlayer.result_str(). We already make the assumption that we can just append "in ", which may mess up translation. Overall, I think it would make the code too complex and fragile for little gain.

That leaves the "game summary" page.

UEWBot commented 1 year ago

Actually, the game summary page would basically just repeat what's already on the main page for a game. Closing this as "done".