Wrap the table in a div with the correct class to provide appropriate side whitespace to the content.
Signed-off-by: Belen Barros Pena <[email protected]> --- bitbake/lib/toaster/toastergui/templates/newcustomimage.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/templates/newcustomimage.html b/bitbake/lib/toaster/toastergui/templates/newcustomimage.html index 46aed90..f8a00d3 100644 --- a/bitbake/lib/toaster/toastergui/templates/newcustomimage.html +++ b/bitbake/lib/toaster/toastergui/templates/newcustomimage.html @@ -7,8 +7,10 @@ {% include "newcustomimage_modal.html" %} {% include "projecttopbar.html" %} -{% url table_name project.id as xhr_table_url %} -<h2>{{title}} (<span class="table-count-{{table_name}}">0</span>)</h2> -{% include "toastertable.html" %} +<div class="col-md-12"> + {% url table_name project.id as xhr_table_url %} + <h2>{{title}} (<span class="table-count-{{table_name}}">0</span>)</h2> + {% include "toastertable.html" %} +</div> {% endblock %} -- 1.9.1 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
