hgman/js/pageStatistics.js

40 lines
776 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use stheadict';
const pageStatistics = '\
<table>\
<caption>User statistics</caption>\
<thead>\
<tr>\
<th>Name</th>\
<th>Value</th>\
</tr>\
</thead>\
<tbody>\
<tr>\
<th>Всего игр</th>\
<th id="stTotalGames">0</th>\
</tr>\
<tr>\
<th>Отгаданных слов</th>\
<th id="stWinWords">0</th>\
</tr>\
<tr>\
<th>% побед</th>\
<th id="stWinPercentage">0</th>\
</tr>\
<tr>\
<th>Всего букв нажато</th>\
<th id="stLetterClick">0</th>\
</tr>\
<tr>\
<th>Букв отгадано</th>\
<th id="stWinLetter">0</th>\
</tr>\
<tr>\
<th>Процент верных букв</th>\
<th id="stWinLetterPercent">0</th>\
</tr>\
</tbody>\
</table>\
';