mirror of https://github.com/dirtbags/moth.git
Changed results page to have the correct stylesheet.
This commit is contained in:
parent
30e18ea544
commit
dd281b5706
|
@ -201,7 +201,11 @@ class Pflanzarr:
|
||||||
break
|
break
|
||||||
winner = random.choice(winners)
|
winner = random.choice(winners)
|
||||||
|
|
||||||
html = ['<html><body>',
|
html = ['<html>',
|
||||||
|
'<head><title>Game %d results</title>',
|
||||||
|
'<link href="../ctf.css" rel="stylesheet" type="text/css">',
|
||||||
|
'</head>',
|
||||||
|
'<body>',
|
||||||
'<table><tr><th>Team<th>Kills<th>Cause of Death']
|
'<table><tr><th>Team<th>Kills<th>Cause of Death']
|
||||||
for tank in tanks:
|
for tank in tanks:
|
||||||
if tank is winner:
|
if tank is winner:
|
||||||
|
|
Loading…
Reference in New Issue