forked from External/mage
Added some tooltips to user table headers. History is shown in tournament player table now. Changed ratio column to numberic format.
This commit is contained in:
parent
82fed1ed87
commit
687ab7ec6b
18 changed files with 239 additions and 89 deletions
|
|
@ -176,7 +176,10 @@ public class UserData implements Serializable {
|
|||
}
|
||||
|
||||
public String getHistory() {
|
||||
return "Matches:" + this.matchHistory + " Tourneys:" + this.tourneyHistory;
|
||||
if (UserGroup.COMPUTER.equals(this.groupId)) {
|
||||
return "";
|
||||
}
|
||||
return "Matches: " + this.matchHistory + " (" + this.matchQuitRatio + "%) Tourneys: " + this.tourneyHistory + " (" + this.tourneyQuitRatio + "%)";
|
||||
}
|
||||
|
||||
public void setMatchHistory(String history) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue