summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBelen Barros <belen.barros.pena@intel.com>2014-06-11 10:58:55 +0100
committerAlexandru DAMIAN <alexandru.damian@intel.com>2014-06-20 14:46:36 +0100
commit2ae1fa629acf1a37f2c8ad929285cc7c76a9a40b (patch)
treed98a4dab63faa1c728d1cbcd84484cd06b8ddf1b
parentd004be9f6535567fb24f7bfa342932c03562f188 (diff)
downloadbitbake-2ae1fa629acf1a37f2c8ad929285cc7c76a9a40b.tar.gz
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. 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>
-rw-r--r--lib/toaster/toastergui/templates/builddashboard.html29
1 files changed, 17 insertions, 12 deletions
diff --git a/lib/toaster/toastergui/templates/builddashboard.html b/lib/toaster/toastergui/templates/builddashboard.html
index f83ae083a..acf4d0a36 100644
--- a/lib/toaster/toastergui/templates/builddashboard.html
+++ b/lib/toaster/toastergui/templates/builddashboard.html
@@ -84,17 +84,22 @@
<dt>Total package size</dt>
<dd>{{target.pkgsz|filtered_filesizeformat}}</dd>
{% if target.targetHasNoImages %}
- <div class="alert alert-info">
- <p>
- <b>This build did not create any image files</b>
- </p>
- <p>
- This is probably because valid image and license manifest
- files from a previous build already exist in your
- .../poky/build/tmp/deploy directory. You can also <b>view the
- license manifest information</b> in Toaster.
- </p>
- </div>
+ </dl>
+ <div class="row-fluid">
+ <div class="alert alert-info span7">
+ <p>
+ <b>This build did not create any image files</b>
+ </p>
+ <p>
+ This is probably because valid image and license manifest
+ files from a previous build already exist in your
+ <code>.../poky/build/tmp/deploy</code>
+ directory. You can
+ also <a href="{% url 'targetpkg' build.pk target.target.pk %}">view the
+ license manifest information</a> in Toaster.
+ </p>
+ </div>
+ </div>
{% else %}
<dt>
<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 @@
{% endfor %}
</ul>
</dd>
- {% endif %}
</dl>
+ {% endif %}
</div>
{% endif %}
{% endfor %}