blob: fe856a3cb690f4b1d107eaeef92379f1e344946e (
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
|
{% extends "package_detail_base.html" %}
{% load projecttags %}
{% block tabcontent %}
{% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %}
<!-- Generated Files -->
{% if package.buildtargetlist_package.count == 0 %}
{# Not included case #}
<ul class="nav nav-pills">
<li class="active"> <a href="#">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="Shows the files produced by this package."></i>
Generated files ({{packageFileCount}})
</a></li>
<li class=""><a href="{% url 'package_built_dependencies' build.id package.id %}">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="Shows the runtime packages required by this package."></i>
Runtime dependencies ({{dependency_count}})
</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="files">
<!-- Package file list or if empty, alert pane -->
{% if packageFileCount > 0 %}
<div class="alert alert-info">
{{fullPackageSpec}} is <strong>not included</strong> in any image. These are the files that would be added to an image root file system if you were to include it in future builds.
</div>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>File</th>
<th>Size</th>
</tr>
</thead>
{% for file in package.buildfilelist_package.all|dictsort:"path" %}
<tbody>
<tr>
<td>{{file.path}}</td>
<td>{{file.size|filtered_filesizeformat}}</td>
</tr>
</tbody>
{% endfor %}
</table>
{% else %}
<div class="alert alert-info">
<strong>{{fullPackageSpec}}</strong> does not generate any files.
</div>
{% endif %}
</div> <!-- tab-pane active -->
</div> <!-- tab-content -->
{% else %}
{# Included case #}
<div class="tab-content">
<div class="tab-pane active">
<div class="lead well">
Package included in:
{% for itarget in package.buildtargetlist_package.all|dictsort:"target.target" %}
<a href="{% url 'package_included_detail' build.id itarget.target.id package.id %}">
{% if forloop.counter0 > 0 %}
,
{% endif %}
{{itarget.target.target}}
</a>
{% endfor %}
</div>
</div> <!-- tab-pane active -->
</div> <!-- tab-content -->
{% endif %}
{% endwith %}
{% endblock tabcontent %}
|