blob: ffd1a447f600c1fbbfd824c6ed9d5a2e1b347733 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{% set container = entity %}
{% set entity_view = "coverage" %}
{% set entity_type = "container" %}
{% import "entity_macros.html" as entity_macros %}
{% extends "entity_base.html" %}
{% block entity_main %}
<div class="ui centered grid">
<div class="row">
<div class="twelve wide column">
<div class="ui large horizontal statistic">
<div class="value">{{ "{:,}".format(container._stats.total) }}</div>
<div class="label" style="text-transform: none;">Known Releases</div>
</div>
{% if container._stats.total >= 1 %}
{% set frac_kbart = container._stats.in_kbart/container._stats.total %}
{% set frac_preserved = container._stats.is_preserved/container._stats.total %}
{% set frac_web = container._stats.in_web/container._stats.total %}
<div class="ui large {{ entity_macros.progress_color(frac_web) }} progress" style="margin-bottom: 0.1em;">
<div class="bar" style="width: {{ (frac_web*100)|int }}%;">
<div class="progress">{{ (frac_web*100)|int }}%</div>
</div>
<div class="label">
{{ "{:,}".format(container._stats.in_web) }} preserved and available (bright)
</div>
</div>
<br>
<div class="ui large {{ entity_macros.progress_color(frac_preserved) }} progress" style="margin-bottom: 0.1em;">
<div class="bar" style="width: {{ (frac_preserved*100)|int }}%;">
<div class="progress">{{ (frac_preserved*100)|int }}%</div>
</div>
<div class="label">
{{ "{:,}".format(container._stats.is_preserved) }} preserved at all (bright or dark)
</div>
</div>
<br>
<div class="ui large {{ entity_macros.progress_color(frac_kbart) }} progress" style="margin-bottom: 0.1em; margin-top: 1em;">
<div class="bar" style="width: {{ (frac_kbart*100)|int }}%;">
<div class="progress">{{ (frac_kbart*100)|int }}%</div>
</div>
<div class="label">
{{ "{:,}".format(container._stats.in_kbart ) }} preserved by Keeper (dark)
</div>
</div>
{% endif %}
</div>
</div>
</div>
{% if container._stats.total >= 1 %}
<br>
<br>
<h2>Perpetual Access Coverage by Year</h2>
<figure style="margin: 0 0 0 0;">
<embed type="image/svg+xml" src="/container/{{ container.ident }}/ia_coverage_years.svg" />
</figure>
<div style="float: right;">
<a href="/container/{{ container.ident }}/ia_coverage_years.json">Download as JSON</a>
</div>
{% endif %}
{% endblock %}
|