Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / admin-interface / templates / admin-interface / ip.html @ c204fcff

History | View | Annotate | Download (1.3 kB)

1 c204fcff Alex Pyrgiotis
{% extends "admin-interface/base.html" %}
2 c204fcff Alex Pyrgiotis
3 c204fcff Alex Pyrgiotis
{% block extraheader %}
4 c204fcff Alex Pyrgiotis
<small>/ {{ search_query }}</small>
5 c204fcff Alex Pyrgiotis
{% endblock %}
6 c204fcff Alex Pyrgiotis
7 c204fcff Alex Pyrgiotis
{% block content %}
8 c204fcff Alex Pyrgiotis
{% if ip_exists %}
9 c204fcff Alex Pyrgiotis
<h3>IP Address {{ search_query }}</h3>
10 c204fcff Alex Pyrgiotis
<table class="table table-striped table-sorted table-ip">
11 c204fcff Alex Pyrgiotis
<thead>
12 c204fcff Alex Pyrgiotis
  <tr>
13 c204fcff Alex Pyrgiotis
          <th><span> Server</span></th>
14 c204fcff Alex Pyrgiotis
          <th><span> Network </span></th>
15 c204fcff Alex Pyrgiotis
          <th><span> Allocated </span></th>
16 c204fcff Alex Pyrgiotis
          <th><span> Released </span></th>
17 c204fcff Alex Pyrgiotis
          <th><span> Account  </span></th>
18 c204fcff Alex Pyrgiotis
  </tr>
19 c204fcff Alex Pyrgiotis
</thead>
20 c204fcff Alex Pyrgiotis
<tbody>
21 c204fcff Alex Pyrgiotis
{% for ip in ips %}
22 c204fcff Alex Pyrgiotis
  <tr>
23 c204fcff Alex Pyrgiotis
          <td>
24 c204fcff Alex Pyrgiotis
              {% if ip.released_at %}
25 c204fcff Alex Pyrgiotis
                Server {{ ip.server_id }}
26 c204fcff Alex Pyrgiotis
              {% else %}
27 c204fcff Alex Pyrgiotis
              <a href="vm-{{ ip.server_id }}">Server {{ ip.server_id }}</a>
28 c204fcff Alex Pyrgiotis
              {% endif %}
29 c204fcff Alex Pyrgiotis
          </td>
30 c204fcff Alex Pyrgiotis
          <td> Network {{ ip.network_id }} </td>
31 c204fcff Alex Pyrgiotis
          <td> {{ ip.allocated_at|date:"r" }} </td>
32 c204fcff Alex Pyrgiotis
          <td>
33 c204fcff Alex Pyrgiotis
               {% if ip.released_at %}
34 c204fcff Alex Pyrgiotis
                  {{ ip.released_at|date:"r" }}
35 c204fcff Alex Pyrgiotis
               {% else %}
36 c204fcff Alex Pyrgiotis
                  -
37 c204fcff Alex Pyrgiotis
               {% endif %}
38 c204fcff Alex Pyrgiotis
          </td>
39 c204fcff Alex Pyrgiotis
          <td><a href="{{ ip.account }}">{{ ip.account }}</a></td>
40 c204fcff Alex Pyrgiotis
  </tr>
41 c204fcff Alex Pyrgiotis
{% endfor %}
42 c204fcff Alex Pyrgiotis
</tbody>
43 c204fcff Alex Pyrgiotis
</table>
44 c204fcff Alex Pyrgiotis
{% else %}
45 c204fcff Alex Pyrgiotis
46 c204fcff Alex Pyrgiotis
<p> IP Address <em>{{ search_query }}</em> has never been allocated to any server. </p>
47 c204fcff Alex Pyrgiotis
{% endif %}
48 c204fcff Alex Pyrgiotis
{% endblock %}