summaryrefslogtreecommitdiffstats
path: root/templates/host.html
blob: f862e27ce21857838d7cf53496b90bb5bab45289 (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
{% extends 'layout.html' %}

{% block title %}{{hostname}}{% endblock %}

{% block content %}
<h1>{{hostname|replace('.spline.inf.fu-berlin.de', '')}}</h1>

<ul class="nav nav-tabs">
  <li class="active"><a href="#info" data-toggle="tab">Info</a></li>
  <li><a href="#ports" data-toggle="tab">Ports</a></li>
  <li><a href="#interfaces" data-toggle="tab">Interfaces</a></li>
  <li class="pull-right"><a id="index" href="index.html">back to index</a></li>
</ul>

<div class="tab-content">
  <div class="tab-pane active" id="info">
    <dl class="dl-horizontal">
      <dt>hostname</dt><dd>{{hostname}}</dd>
      <dt>description</dt><dd>{{description}}</dd>
      <dt>maintainers</dt>
      <dd>
        <ul>
          {% for maintainer in maintainers %}
          <li><a href="mailto:{{maintainer}}@spline.de">{{maintainer}}</a></li>
          {% endfor %}
        </ul>
      </dd>
      <dt>os</dt><dd>{{os}}</dd>
      <dt>arch</dt><dd>{{arch}}</dd>
      <dt>vserver</dt><dd>{{vserver}}</dd>
      {% if vserver_host is defined  %}
      <dt>vserver_host</dt><dd>{{vserver_host}}</dd>
      {% endif %}
      {% if groups is defined %}
      <dt>bcfg2-groups</dt>
      <dd>
        <ul>
          {% for group in groups %}
          <li>{{group}}</li>
          {% endfor %}
        </ul>
      </dd>
      {% endif %}
    </dl>
  </div>

  <div class="tab-pane row" id="interfaces">
    {% for group in addresses | select_with_attribute('vserver', False) | groupby('interface') %}
    <div class="span6">
      <h3>{{ group.grouper }}</h3>
      <ul>
        {% for address in group.list %}
        <li>{{address['address']}}/{{address['netmask']}}</li>
        {% else %}
        <li>no address</li>
        {% endfor %}
      </ul>
    </div>
    {% else %}
    <p class="centering">no network interfaces</p>
    {% endfor %}
  </div>

  <div class="tab-pane" id="ports">
    <table id="portstable" class="table table-striped table-hover tablesorter">
      <thead>
        <tr>
          <th>Port</th>
          <th>IP</th>
          <th>Process</th>
          <th>Protocol</th>
        </tr>
      </thead>
      <tbody>
        {% for port in ports %}
        <tr>
          <td>{{port['port']}}</td>
          <td>{{port['ip']}}</td>
          <td>{{port['process']}}</td>
          <td>{{port['proto']}}</td>
        </tr>
        {% else%}
        <tr><td class="centering" colspan="4">no ports open</td></tr>
        {% endfor %}
      </tbody>
    </table>
  </div>
</div>

<script>
<!--
  $(function() {
    // force column "IP" to text (ips sometimes are parsed as digits)
    $("table#portstable").tablesorter({ headers: { 1: { sorter:'text' } } });
  });
//-->
</script>
{% endblock %}