-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeprecated.html.twig
80 lines (74 loc) · 3.81 KB
/
deprecated.html.twig
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
72
73
74
75
76
77
78
79
80
{% extends 'layout.html.twig' %}
{% block title %}
{{ parent() }} » Deprecated elements
{% endblock %}
{% block content %}
<div class="row-fluid">
<aside class="span5">
<ul class="side-nav nav nav-list">
<li class="nav-header">Navigation</li>
{% set errorCount = 0 %}
{% set fileCounts = [] %}
{% for element in project.indexes.elements %}
{% if element.deprecated %}
{% if element.file.path != previousPath %}
<li><a href="#{{ element.file.path }}"><i class="icon-file"></i> {{ element.file.path }}</a></li>
{% endif %}
{% set errorCount = errorCount + element.tags.deprecated.count %}
{% if fileCounts[element.file.path] is not defined %}
{% set fileCounts = fileCounts|merge({(element.file.path): 0}) %}
{% endif %}
{% set fileCounts = fileCounts|merge({(element.file.path): fileCounts[element.file.path] + 1}) %}
{% set previousPath = element.file.path %}
{% endif %}
{% endfor %}
</ul>
</aside>
<main class="span7">
<h1>Deprecated Elements</h1>
{% if errorCount <= 0 %}
<div class="alert alert-info">There are no deprecated elements.</div>
{% else %}
<div class="deprecations">
{% for element in project.indexes.elements %}
{% if element.deprecated %}
{% if element.file.path != previousPath %}
{% if previousPath %}
</table>
</div>
{% endif %}
<div class="deprecations__file">
<h2 class="deprecations__file--header" id="{{ element.file.path }}">
{{ element.file.path }} <span class="pull-right badge badge-info">{{ fileCounts[element.file.path] }}</span>
</h2>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th scope="col">Element</th>
<th scope="col">Line</th>
<th scope="col">Description</th>
</tr>
</thead>
{% endif %}
<tbody>
{% for tag in element.tags.deprecated %}
<tr>
<th scope="row">{{ element.fullyQualifiedStructuralElementName }}</th>
<td>{{ element.line }}</td>
<td>{{ (tag.version ~ ' ' ~ tag.description)|markdown|raw }}</td>
</tr>
{% endfor %}
</tbody>
{% set previousPath = element.file.path %}
{% endif %}
{% endfor %}
</table>
</div>
{% endif %}
<ul class="breadcrumb">
<li><a href="{% if path('/') == '' %}?{% else %}{{ path('/') }}{% endif %}"><i class="icon-flag"></i></a> <span class="divider">/</span></li>
<li class="active">Deprecated Elements</li>
</ul>
</main>
</div>
{% endblock %}