summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/quotas.html
blob: 75e762cc6059bc6223a95d5bedba87de57a7174f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'syspanel/base.html' %}
{%load i18n%}

{% block sidebar %}
  {% with current_sidebar="tenants" %}
    {{block.super}}
  {% endwith %}
{% endblock %}

{% block page_header %}
  {% include "horizon/common/_page_header.html" with title=_("Update Tenant Quotas") %}
{% endblock page_header %}

{% block syspanel_main %}
  <div class="dash_block">
    <div class="left">
      {% include 'syspanel/tenants/_update_quotas_form.html' with form=form %}
    </div>

    <div class="right">
      <h3>{% trans "Description"%}:</h3>
      <p>{% trans "From here you can edit quotas (max limits) for the tenant "%}{{ tenant_id }}.</p>
    </div>
    <div class="clear">&nbsp;</div>
  </div>
{% endblock %}