blob: c8c2dddf29a6dd0fafb9fcfab03a1e3f71ac26b4 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
{% extends "package_detail_base.html" %}
{% load projecttags %}
{% block title %}
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
<h1>{{fullPackageSpec}} <small>({{target.target}})</small></h1>
{% endwith %}
{% endblock title %}
{% block tabcontent %}
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
{% include "package_included_tabs.html" with active_tab="dependencies" %}
<div class="tab-content">
<div class="tab-pane active" id="dependencies">
{% ifnotequal runtime_deps|length 0 %}
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>Package</th>
<th>Version</th>
<th>Size</th>
</tr>
</thead>
{% for runtime_dep in runtime_deps %}
<tbody>
<tr>
<td>
<a href="{% url 'package_included_detail' build.id target.id runtime_dep.depends_on_id %}">
{{runtime_dep.name}}
</a>
</td>
<td>{{runtime_dep.version}}</td>
<td>{{runtime_dep.size|filtered_filesizeformat}}</td>
</tr>
</tbody>
{% endfor %}
</table>
{% else %}
<div class="alert alert-info">
<strong>{{fullPackageSpec}}</strong> has no runtime dependencies.
</div>
{% endifnotequal %}
{% ifnotequal other_deps|length 0 %}
<h3>Other runtime relationships</h3>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>Package</th>
<th>Version</th>
<th>Size</th>
<th>
<i class="icon-question-sign get-help" title="There are 5 relationship types: recommends, suggests, provides, replaces and conflicts"></i>
Relationship type
</th>
</tr>
</thead>
{% for other_dep in other_deps %}
<tbody>
{% if other_dep.installed %}
<tr>
<td>
<a href="{% url 'package_included_detail' build.id target.id other_dep.depends_on_id %}">
{{other_dep.name}}
</a>
</td>
<td>{{other_dep.version}}</td>
<td>{{other_dep.size|filtered_filesizeformat}}</td>
<td>
{{other_dep.dep_type_display}}
<i class="icon-question-sign get-help hover-help" title="{{other_dep.dep_type_help}}" ></i>
</td>
</tr>
{% else %}
<tr class="muted">
<td>{{other_dep.name}}</td>
<td>{{other_dep.version}}</td>
<td></td>
<td>
{{other_dep.dep_type_display}}
<i class="icon-question-sign get-help hover-help" title="{{other_dep.dep_type_help}}" ></i>
</td>
</tr>
{% endif %}
</tbody>
{% endfor %}
</table>
{% endifnotequal %}
</div> <!-- end tab-pane -->
</div> <!-- end tab content -->
{% endwith %}
{% endblock tabcontent %}
|