Adding username in the result table
This commit is contained in:
parent
0b0bb43658
commit
9cfb1d0059
1 changed files with 2 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue