diff options
author | Belen Barros <belen.barros.pena@intel.com> | 2014-06-11 10:58:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-20 14:58:09 +0100 |
commit | b0ce70ffa820c8b4069bdb413f7aa9db668b9428 (patch) | |
tree | e093d3939678e1a5ce32bb871b6c08633e5b5c7d /bitbake/lib | |
parent | ac2d94b6843496a7fd948e089a386bb35a230689 (diff) | |
download | poky-b0ce70ffa820c8b4069bdb413f7aa9db668b9428.tar.gz |
bitbake: toaster: Fix spacing and layout in no image files notification
Close the definition list before adding the notification, and
restrict the notification width to avoid uncomfortable line
lenghts.
(Bitbake rev: 2ae1fa629acf1a37f2c8ad929285cc7c76a9a40b)
Signed-off-by: Belen Barros <belen.barros.pena@intel.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/builddashboard.html | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/builddashboard.html b/bitbake/lib/toaster/toastergui/templates/builddashboard.html index f83ae083a9..acf4d0a361 100644 --- a/bitbake/lib/toaster/toastergui/templates/builddashboard.html +++ b/bitbake/lib/toaster/toastergui/templates/builddashboard.html | |||
@@ -84,17 +84,22 @@ | |||
84 | <dt>Total package size</dt> | 84 | <dt>Total package size</dt> |
85 | <dd>{{target.pkgsz|filtered_filesizeformat}}</dd> | 85 | <dd>{{target.pkgsz|filtered_filesizeformat}}</dd> |
86 | {% if target.targetHasNoImages %} | 86 | {% if target.targetHasNoImages %} |
87 | <div class="alert alert-info"> | 87 | </dl> |
88 | <p> | 88 | <div class="row-fluid"> |
89 | <b>This build did not create any image files</b> | 89 | <div class="alert alert-info span7"> |
90 | </p> | 90 | <p> |
91 | <p> | 91 | <b>This build did not create any image files</b> |
92 | This is probably because valid image and license manifest | 92 | </p> |
93 | files from a previous build already exist in your | 93 | <p> |
94 | .../poky/build/tmp/deploy directory. You can also <b>view the | 94 | This is probably because valid image and license manifest |
95 | license manifest information</b> in Toaster. | 95 | files from a previous build already exist in your |
96 | </p> | 96 | <code>.../poky/build/tmp/deploy</code> |
97 | </div> | 97 | directory. You can |
98 | also <a href="{% url 'targetpkg' build.pk target.target.pk %}">view the | ||
99 | license manifest information</a> in Toaster. | ||
100 | </p> | ||
101 | </div> | ||
102 | </div> | ||
98 | {% else %} | 103 | {% else %} |
99 | <dt> | 104 | <dt> |
100 | <i class="icon-question-sign get-help" title="The location in disk of the license manifest, a document listing all packages installed in your image and their licenses"></i> | 105 | <i class="icon-question-sign get-help" title="The location in disk of the license manifest, a document listing all packages installed in your image and their licenses"></i> |
@@ -113,8 +118,8 @@ | |||
113 | {% endfor %} | 118 | {% endfor %} |
114 | </ul> | 119 | </ul> |
115 | </dd> | 120 | </dd> |
116 | {% endif %} | ||
117 | </dl> | 121 | </dl> |
122 | {% endif %} | ||
118 | </div> | 123 | </div> |
119 | {% endif %} | 124 | {% endif %} |
120 | {% endfor %} | 125 | {% endfor %} |