summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/templates/dashboard/server_table.html
blob: fee7e8b1a2ade0d0afe2f972e41616f0ec8b5728 (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>
        <th>
            {{ server.name }}
        </th>
        <th>
            {{ server.model }}
        </th>
        <th>
            {{ server.cpu }}
        </th>
        <th>
            {{ server.ram }}
        </th>
        <th>
            {{ server.storage }}
        </th>
    </tr>
{% endfor %}
</tbody>