summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/src/templates/dashboard/server_table.html
blob: f01bd6034e667625ff3ab5a3063bebb44e0017ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<thead>
<tr>
    <th>Server</th>
    <th>Model</th>
    <th>CPU</th>
    <th>RAM</th>
    <th>Storage</th>
</tr>
</thead>
<tbody>
{% for server in resource.server_set.all %}
    <tr>
        <td>
            {{ server.name }}
        </td>
        <td>
            {{ server.model }}
        </td>
        <td>
            {{ server.cpu }}
        </td>
        <td>
            {{ server.ram }}
        </td>
        <td>
            {{ server.storage }}
        </td>
    </tr>
{% endfor %}
</tbody>