mirror of
https://git.yoctoproject.org/poky
synced 2026-04-13 23:02:30 +02:00
bitbake: toaster: <Add class id to a few columns>
Added class ids to columns that were missing them in the Packages and Recipes pages. This is required for Toaster UI automation efforts. [YOCTO #7377] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1e625fcc5f
commit
44b7b67154
@@ -60,9 +60,9 @@
|
||||
<tr class="data">
|
||||
|
||||
<!-- Package -->
|
||||
<td><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td>
|
||||
<td class="package_name"><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td>
|
||||
<!-- Package Version -->
|
||||
<td>{%if package.version%}<a href="{% url "package_built_detail" build.pk package.pk %}">{{package.version}}-{{package.revision}}</a>{%endif%}</td>
|
||||
<td class="package_version">{%if package.version%}<a href="{% url "package_built_detail" build.pk package.pk %}">{{package.version}}-{{package.revision}}</a>{%endif%}</td>
|
||||
<!-- Package Size -->
|
||||
<td class="size sizecol">{{package.size|filtered_filesizeformat}}</td>
|
||||
<!-- License -->
|
||||
|
||||
@@ -41,8 +41,12 @@
|
||||
{% for recipe in objects %}
|
||||
|
||||
<tr class="data">
|
||||
<td><a href="{% url "recipe" build.pk recipe.pk %}">{{recipe.name}}</a></td>
|
||||
<td><a href="{% url "recipe" build.pk recipe.pk %}">{{recipe.version}}</a></td>
|
||||
<td class="recipe__name">
|
||||
<a href="{% url "recipe" build.pk recipe.pk %}">{{recipe.name}}</a>
|
||||
</td>
|
||||
<td class="recipe__version">
|
||||
<a href="{% url "recipe" build.pk recipe.pk %}">{{recipe.version}}</a>
|
||||
</td>
|
||||
<!-- Depends -->
|
||||
<td class="depends_on">
|
||||
{% with deps=recipe_deps|get_dict_value:recipe.pk %}
|
||||
|
||||
Reference in New Issue
Block a user