-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.txt.jinja
51 lines (44 loc) · 1.74 KB
/
report.txt.jinja
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
=================================================
<> DIRECTORY <>
==== ==== ==== ==== ==== ==== ==== ==== ==== ====
{% for entry in directory if entry.notable -%}
[D{{ loop.index }}] {{ entry.href }} : {{ entry.label }}
{% if entry.ood_warning -%}
<!> {{ lang.ood_warning }}
{% endif -%}
{% for subroute in entry.subroutes if subroute.notable -%}
- {{ subroute.label }} @ {{ subroute.href }}
{% endfor %}
{% endfor -%}
=================================================
<> CHANGELOG <>
==== ==== ==== ==== ==== ==== ==== ==== ==== ====
{% for log in (changelog | reverse) -%}
[{{ log.date }}] {{ log.summary }}
{% for note in log.notes -%}
- {{ note }}
{% endfor %}
{% endfor -%}
=================================================
<> WARNING LOG <>
==== ==== ==== ==== ==== ==== ==== ==== ==== ====
(This warning log can be thought of as a todo list. I'll try to tackle these to the best of my ability, but would certainly appreciate some help!)
{% for warning in warnings -%}
[W{{ loop.index }}] {% for resource in warning.affects %}{{resource}}{% if not loop.last %} and {% endif %}{% endfor %}
{% for note in warning.warnings -%}
- {{ note }}
{% endfor %}
{% endfor -%}
=================================================
<> ERROR LOG <>
==== ==== ==== ==== ==== ==== ==== ==== ==== ====
{% for error in errors -%}
[E{{ loop.index }}] {% for resource in error.resources %}{{resource}}{% if not loop.last %} and {% endif %}{% endfor %}
- {{ lang.error[error.error_type] }}
- Affects {% for resource in error.affects %}{{resource}}{% if not loop.last %} and {% endif %}{% endfor %}
{% else -%}
No notable errors are presently known.
{% endfor -%}
=================================================
{{ lang.footmatter }}
=================================================