Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / images_list.html @ 483c9197

History | View | Annotate | Download (1 kB)

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>Owner</th>
10
      <th>State</th>
11
      <th>Backend ID</th>
12
      <th>Format</th>
13
      <th>Public</th>
14
      <th>Updated</th>
15
    </tr>
16
  </thead>
17
  <tbody>
18
    {% for image in images %}
19
    <tr>
20
      <td><a href="{% url synnefo.admin.views.images_info image.id %}">{{ image.id }}</a></td>
21
      <td><a href="{% url synnefo.admin.views.images_info image.id %}">{{ image.name }}</a></td>
22
      <td>{% if image.owner %}<a href="{% url synnefo.admin.views.users_info image.owner.id %}">{{ image.owner.name }}</a>{% endif %}
23
      </td>
24
      <td>{{ image.state }}</td>
25
      <td>{{ image.backend_id }}</td>
26
      <td>{{ image.format }}</td>
27
      <td>{{ image.public }}</td>
28
      <td>{{ image.updated }}</td>
29
    </tr>
30
    {% endfor %}
31
  </tbody>
32
</table>
33

    
34
<a class="btn success" href="{% url synnefo.admin.views.images_register %}">Register a new Image</a>
35
<br /><br />
36
{% endblock body %}