Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / images_list.html @ 244c552b

History | View | Annotate | Download (939 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>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>{{ image.userid|default:"" }}</td>
23
      <td>{{ image.state }}</td>
24
      <td>{{ image.backend_id }}</td>
25
      <td>{{ image.format }}</td>
26
      <td>{{ image.public }}</td>
27
      <td>{{ image.updated }}</td>
28
    </tr>
29
    {% endfor %}
30
  </tbody>
31
</table>
32

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