summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/resource/hostprofile_detail.html
blob: 0776b9eb6716d3f05fa99de588eeb83fcc1449d7 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{% extends "base.html" %}
{% load staticfiles %}

{% block content %}
<div class="row">
    <div class="col-lg-6">
        <div class="panel panel-default">
            <div class="panel-heading clearfix">
                <h4 style="display: inline;">Available at</h4>
                <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;" >Expand</a>
            </div>
            <div class="panel-body" id="panel_overview">
                <table class="table">
                    <tr>
                        <td>
                            <ul>
                            {% for lab in hostprofile.labs.all %}
                                <li>{{lab.name}}</li>
                            {% endfor %}
                            </ul>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
        <div class="panel panel-default">
            <div class="panel-heading clearfix">
                <h4 style="display: inline;">RAM</h4>
                <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;" >Expand</a>
            </div>
            <div class="panel-body" id="panel_overview">
                <table class="table">
                    <tr>
                        <td>{{hostprofile.ramprofile.first.amount}}G,
                            {{hostprofile.ramprofile.first.channels}} channels</td>
                    </tr>
                </table>
            </div>
        </div>
        <div class="panel panel-default">
            <div class="panel-heading clearfix">
                <h4 style="display: inline;">CPU</h4>
                <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;" >Expand</a>
            </div>
            <div class="panel-body" id="panel_overview">
                <table class="table">
                    <tr>
                        <td>Arch:</td>
                        <td>{{hostprofile.cpuprofile.first.architecture}}</td>
                    </tr>
                    <tr>
                        <td>Cores:</td>
                        <td>{{hostprofile.cpuprofile.first.cores}}</td>
                    </tr>
                    <tr>
                        <td>Sockets:</td>
                        <td>{{hostprofile.cpuprofile.first.cpus}}</td>
                    </tr>
                </table>
            </div>
        </div>
    </div>
    <div class="col-lg-6">
        <div class="panel panel-default">
            <div class="panel-heading clearfix">
                <h4 style="display: inline;">Interfaces</h4>
                <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;" >Expand</a>
            </div>
            <div class="panel-body" id="panel_overview">
                <table class="table">
                            {% for intprof in hostprofile.interfaceprofile.all %}
                            <tr>
                                <td>
                                <table class="table borderless">
                                    <tr>
                                        <td>Name:</td>
                                        <td>{{intprof.name}}</td>
                                    </tr>
                                    <tr>
                                        <td>Speed:</td>
                                        <td>{{intprof.speed}}</td>
                                    </tr>
                                </table>
                                </td>
                            </tr>
                            {% endfor %}
                </table>
            </div>
        </div>
    </div>
    <div class="col-lg-6">
        <div class="panel panel-default">
            <div class="panel-heading clearfix">
                <h4 style="display: inline;">Disk</h4>
                <a data-toggle="collapse" data-target="#panel_overview" class="btn pull-right" style="line-height: 1;" >Expand</a>
            </div>
            <div class="panel-body" id="panel_overview">
                <table class="table">
                    <tr>
                        <td>Size:</td>
                        <td>{{hostprofile.storageprofile.first.size}} GiB</td>
                    </tr>
                    <tr>
                        <td>Type:</td>
                        <td>{{hostprofile.storageprofile.first.media_type}}</td>
                    </tr>
                    <tr>
                        <td>Mount Point:</td>
                        <td>{{hostprofile.storageprofile.first.name}}</td>
                    </tr>
                </table>
            </div>
        </div>
    </div>
</div>
{% endblock content %}