root / snf-pithos-app / pithos / api / templates / containers.xml @ 4a669c71
History | View | Annotate | Download (435 Bytes)
1 | 2e55b5fe | Antony Chazapis | <?xml version="1.0" encoding="UTF-8"?>
|
---|---|---|---|
2 | 690747fe | Antony Chazapis | {% load get_type %} |
3 | 94195dd0 | Antony Chazapis | <account name="{{ account }}"> |
4 | 2e55b5fe | Antony Chazapis | {% for container in containers %} |
5 | 2e55b5fe | Antony Chazapis | <container>
|
6 | b956618e | Antony Chazapis | {% for key, value in container.items %} |
7 | 690747fe | Antony Chazapis | <{{ key }}>{% if value|get_type == "dict" %} |
8 | 690747fe | Antony Chazapis | {% for k, v in value.iteritems %}<key>{{ k }}</key><value>{{ v }}</value> |
9 | 690747fe | Antony Chazapis | {% endfor %} |
10 | 690747fe | Antony Chazapis | {% else %}{{ value }}{% endif %}</{{ key }}> |
11 | b956618e | Antony Chazapis | {% endfor %} |
12 | 2e55b5fe | Antony Chazapis | </container>
|
13 | 2e55b5fe | Antony Chazapis | {% endfor %} |
14 | 2e55b5fe | Antony Chazapis | </account> |