diff options
Diffstat (limited to 'templates/server_html.jinja')
-rw-r--r-- | templates/server_html.jinja | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/server_html.jinja b/templates/server_html.jinja index e22eb29..0306d13 100644 --- a/templates/server_html.jinja +++ b/templates/server_html.jinja @@ -32,15 +32,15 @@ {% if info['data']['players'] %} <table class="playerlist"> <tr> - <th width="60%">Name</th> + <th width="50%">Name</th> <th width="20%">Score</th> - <th width="20%">Time</th> + <th width="30%">Time</th> </tr> {% for player in info['data']['player_info'] | sort(attribute='score', reverse=True) %} <tr> <td class="name">{{ player['name'] }}</td> <td>{{ player['score'] }}</td> - <td>{{ player['duration'] }}s</td> + <td>{{ display_time(player['duration']) }}s</td> </tr> {% endfor %} </table> |