4 <?xml version="1.0" encoding="UTF-8"?>
5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//END"
6 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
7 <html xmlns="http://www.w3.org/1999/xhtml">
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10 <title>${name} - System info</title>
11 <link rel="stylesheet" href="../result.css" type="text/css" />
14 <h1>System info for ${name}</h1>
16 <a href="../index.html">Back to summary</a>
27 % for key, value in sorted(six.iteritems(totals), key=lambda i: (i[1], i[0]), reverse=True):
28 <tr><td>${key}</td><td>${value}</td></tr>
30 <tr><td>total</td><td>${sum(six.itervalues(totals))}</td></tr>
72 <a href="../index.html">Back to summary</a>