diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates')
3 files changed, 25 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html index 79f135cd92..6925aecb4d 100644 --- a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html +++ b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html | |||
| @@ -97,8 +97,8 @@ | |||
| 97 | # decision on index search algorithm | 97 | # decision on index search algorithm |
| 98 | <a href="http://layers.openembedded.org" target="_blank"> | 98 | <a href="http://layers.openembedded.org" target="_blank"> |
| 99 | <i class="icon-share get-info"></i> | 99 | <i class="icon-share get-info"></i> |
| 100 | {% endcomment %} | ||
| 101 | </a> | 100 | </a> |
| 101 | {% endcomment %} | ||
| 102 | {% endif %} | 102 | {% endif %} |
| 103 | </dd> | 103 | </dd> |
| 104 | 104 | ||
diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html index 71043ec1ac..c76774ac9c 100644 --- a/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html +++ b/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html | |||
| @@ -23,12 +23,19 @@ | |||
| 23 | </thead> | 23 | </thead> |
| 24 | <tbody> | 24 | <tbody> |
| 25 | {% for runtime_dep in runtime_deps %} | 25 | {% for runtime_dep in runtime_deps %} |
| 26 | <tr> | 26 | <tr {{runtime_dep.size|format_vpackage_rowclass}} > |
| 27 | {% if runtime_dep.size != -1 %} | ||
| 27 | <td> | 28 | <td> |
| 28 | <a href="{% url 'package_included_detail' build.id target.id runtime_dep.depends_on_id %}"> | 29 | <a href="{% url 'package_included_detail' build.id target.id runtime_dep.depends_on_id %}"> |
| 29 | {{runtime_dep.name}} | 30 | {{runtime_dep.name}} |
| 30 | </a> | 31 | </a> |
| 31 | </td> | 32 | </td> |
| 33 | {% else %} | ||
| 34 | <td> | ||
| 35 | {{runtime_dep.name|format_vpackage_namehelp}} | ||
| 36 | </td> | ||
| 37 | {% endif %} | ||
| 38 | |||
| 32 | <td>{{runtime_dep.version}}</td> | 39 | <td>{{runtime_dep.version}}</td> |
| 33 | <td>{{runtime_dep.size|filtered_filesizeformat}}</td> | 40 | <td>{{runtime_dep.size|filtered_filesizeformat}}</td> |
| 34 | </tr> | 41 | </tr> |
| @@ -58,12 +65,18 @@ | |||
| 58 | <tbody> | 65 | <tbody> |
| 59 | {% for other_dep in other_deps %} | 66 | {% for other_dep in other_deps %} |
| 60 | {% if other_dep.installed %} | 67 | {% if other_dep.installed %} |
| 61 | <tr> | 68 | <tr {{other_dep.size|format_vpackage_rowclass}}> |
| 69 | {% if other_dep.size != -1 %} | ||
| 62 | <td> | 70 | <td> |
| 63 | <a href="{% url 'package_included_detail' build.id target.id other_dep.depends_on_id %}"> | 71 | <a href="{% url 'package_included_detail' build.id target.id other_dep.depends_on_id %}"> |
| 64 | {{other_dep.name}} | 72 | {{other_dep.name}} |
| 65 | </a> | 73 | </a> |
| 66 | </td> | 74 | </td> |
| 75 | {% else %} | ||
| 76 | <td> | ||
| 77 | {{other_dep.name|format_vpackage_namehelp}} | ||
| 78 | </td> | ||
| 79 | {% endif %} | ||
| 67 | <td>{{other_dep.version}}</td> | 80 | <td>{{other_dep.version}}</td> |
| 68 | <td>{{other_dep.size|filtered_filesizeformat}}</td> | 81 | <td>{{other_dep.size|filtered_filesizeformat}}</td> |
| 69 | <td> | 82 | <td> |
diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html index 0eb39d3f4f..8653ae0fe2 100644 --- a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html +++ b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html | |||
| @@ -28,12 +28,19 @@ | |||
| 28 | </thead> | 28 | </thead> |
| 29 | <tbody> | 29 | <tbody> |
| 30 | {% for reverse_dep in reverse_deps|dictsort:"name" %} | 30 | {% for reverse_dep in reverse_deps|dictsort:"name" %} |
| 31 | <tr> | 31 | <tr {{reverse_dep.size|format_vpackage_rowclass}} > |
| 32 | {% if reverse_dep.size != -1 %} | ||
| 32 | <td> | 33 | <td> |
| 33 | <a href="{% url 'package_included_detail' build.id target.id reverse_dep.dependent_id %}"> | 34 | <a href="{% url 'package_included_detail' build.id target.id reverse_dep.dependent_id %}"> |
| 34 | {{reverse_dep.name}} | 35 | {{reverse_dep.name}} |
| 35 | </a> | 36 | </a> |
| 36 | </td> | 37 | </td> |
| 38 | {% else %} | ||
| 39 | <td> | ||
| 40 | {{reverse_dep.name|format_vpackage_namehelp}} | ||
| 41 | </td> | ||
| 42 | {% endif %} | ||
| 43 | |||
| 37 | <td>{{reverse_dep.version}}</td> | 44 | <td>{{reverse_dep.version}}</td> |
| 38 | <td>{{reverse_dep.size|filtered_filesizeformat}}</td> | 45 | <td>{{reverse_dep.size|filtered_filesizeformat}}</td> |
| 39 | </tr> | 46 | </tr> |
