Adding username in the result table

This commit is contained in:
Denis-Cosmin Nutiu 2017-04-30 14:10:38 +03:00
parent 0b0bb43658
commit 9cfb1d0059

View file

@ -10,6 +10,7 @@
<table class="table" id="result-table">
<thead>
<tr>
<th>Username</th>
<th>GPU</th>
<th>CPU</th>
<th>Score</th>
@ -19,6 +20,7 @@
<tbody>
{% for item in results %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.gpu }}</td>
<td>{{ item.cpu }}</td>
<td>{{ item.score }}</td>