Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / admin / templates / flavors_list.html @ 9c0ac5af

History | View | Annotate | Download (814 Bytes)

1
{% extends "base.html" %}
2

    
3
{% block body %}
4
<table class="zebra-striped id-sorted">
5
  <thead>
6
    <tr>
7
      <th>ID</th>
8
      <th>Name</th>
9
      <th>CPUs</th>
10
      <th>RAM</th>
11
      <th>Disk</th>
12
      <th>Deleted</th>
13
    </tr>
14
  </thead>
15
  <tbody>
16
    {% for flavor in flavors %}
17
    <tr>
18
      <td><a href="{% url synnefo.admin.views.flavors_info flavor.id %}">{{ flavor.id }}</a></td>
19
      <td><a href="{% url synnefo.admin.views.flavors_info flavor.id %}">{{ flavor.name }}</a></td>
20
      <td>{{ flavor.cpu }}</td>
21
      <td>{{ flavor.ram }} MiB</td>
22
      <td>{{ flavor.disk }} GiB</td>
23
      <td>{{ flavor.deleted }}</td>
24
    </tr>
25
    {% endfor %}
26
  </tbody>
27
</table>
28

    
29
<a class="btn success" href="{% url synnefo.admin.views.flavors_create %}">Create a new Flavor</a>
30
<br /><br />
31
{% endblock body %}