diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/bpackage.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/bpackage.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/bpackage.html b/bitbake/lib/toaster/toastergui/templates/bpackage.html new file mode 100644 index 0000000000..67fc65ca3e --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/bpackage.html | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | {% extends "basebuildpage.html" %} | ||
| 2 | |||
| 3 | {% block pagetitle %}Packages{% endblock %} | ||
| 4 | {% block pagetable %} | ||
| 5 | {% if not objects %} | ||
| 6 | <p>No packages were recorded for this target!</p> | ||
| 7 | {% else %} | ||
| 8 | |||
| 9 | <tr> | ||
| 10 | <th>Name</th> | ||
| 11 | <th>Version</th> | ||
| 12 | <th>Recipe</th> | ||
| 13 | <th>Summary</th> | ||
| 14 | <th>Section</th> | ||
| 15 | <th>Description</th> | ||
| 16 | <th>Size on host disk (Bytes)</th> | ||
| 17 | <th>License</th> | ||
| 18 | <th>Dependencies List (all)</th> | ||
| 19 | </tr> | ||
| 20 | |||
| 21 | {% for package in objects %} | ||
| 22 | |||
| 23 | <tr class="data"> | ||
| 24 | <td><a name="#{{package.name}}" href="{% url "bfile" build.pk package.pk %}">{{package.name}} ({{package.filelist_bpackage.count}} files)</a></td> | ||
| 25 | <td>{{package.version}}-{{package.revision}}</td> | ||
| 26 | <td>{%if package.recipe%}<a href="{% url "layer_versions_recipes" package.recipe.layer_version_id %}#{{package.recipe.name}}">{{package.recipe.name}}</a>{{package.package_name}}</a>{%endif%}</td> | ||
| 27 | |||
| 28 | <td>{{package.summary}}</td> | ||
| 29 | <td>{{package.section}}</td> | ||
| 30 | <td>{{package.description}}</td> | ||
| 31 | <td>{{package.size}}</td> | ||
| 32 | <td>{{package.license}}</td> | ||
| 33 | <td> | ||
| 34 | <div style="height: 3em; overflow:auto"> | ||
| 35 | {% for bpd in package.package_dependencies_source.all %} | ||
| 36 | {{bpd.dep_type}}: {{bpd.depends_on.name}} <br/> | ||
| 37 | {% endfor %} | ||
| 38 | </div> | ||
| 39 | </td> | ||
| 40 | {% endfor %} | ||
| 41 | |||
| 42 | {% endif %} | ||
| 43 | |||
| 44 | {% endblock %} | ||
