Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / astakosuserquota_list.html @ fc1e2f02

History | View | Annotate | Download (745 Bytes)

1
{% extends "im/account_base.html" %}
2

    
3
{% load filters %}
4

    
5
{% block page.body %}
6
<div class="maincol {% block innerpage.class %}{% endblock %}">
7
    <div class="section">
8
        {% if quota %}
9
          <table class="zebra-striped id-sorted">
10
            <thead>
11
              <tr>
12
                <th>Resource</th>
13
                <th>Limit</th>
14
              </tr>
15
            </thead>
16
            <tbody>
17
            {% for k in quota|dkeys %}
18
                <tr>
19
                    <td>{{ k }}</td>
20
                    <td>{{ quota|lookup:k }}</td>
21
                  </tr>
22
            {% endfor %}
23
            </tbody>
24
        </table>
25
        {% else %}
26
            <p>No policies</p>
27
        {% endif %}
28
    </div>
29
</div>
30
{% endblock %}