Statistics
| Branch: | Tag: | Revision:

root / pithos / api / templates / objects.xml @ 4adb68b8

History | View | Annotate | Download (420 Bytes)

1
{% spaceless %}
2
<?xml version="1.0" encoding="UTF-8"?>
3

    
4
<container name="{{ container }}">
5
  {% for object in objects %}
6
  <object>
7
    <name>{{ object.name }}</name>
8
    <hash>{{ object.hash }}</hash>
9
    <bytes>{{ object.bytes }}</bytes>
10
    <content_type>{{ object.content_type }}</content_type>
11
    <last_modified>{{ object.last_modified }}</last_modified>
12
  </object>
13
  {% endfor %}
14
</container>
15
{% endspaceless %}