summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/volumes/templates/volumes/volumes/_snapshot_limits.html
blob: 1f3c5323f2c2ae14cebde0e3f54ec1a2929274a4 (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
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "project/volumes/volumes/_limits.html" %}
{% load i18n horizon humanize %}

{% block title %}
  {% trans "From here you can create a snapshot of a volume." %}
{% endblock %}

{% block head %}
  {% trans "Snapshot Limits" %}
{% endblock %}

{% block gigabytes_used %}
  {{ usages.totalGigabytesUsed|intcomma }}
{% endblock %}

{% block gigabytes_used_progress %}
  "{{ usages.totalGigabytesUsed }}"
{% endblock %}

{% block type_title %}
  {% trans "Number of Snapshots" %}
{% endblock %}

{% block used %}
  {{ usages.snapshotsUsed|intcomma }}
{% endblock %}

{% block total %}
  {{ usages.maxTotalSnapshots|intcomma|quota }}
{% endblock %}

{% block type_id %}
  "quota_snapshots"
{% endblock %}

{% block total_progress %}
  "{{ usages.maxTotalSnapshots }}"
{% endblock %}

{% block used_progress %}
  "{{ usages.snapshotsUsed }}"
{% endblock %}