bitbake: toaster: fix some code spacing issues

Code is related to the basetable templates files.
It had mixed tabs and spaces and was miss aligned in various places,
making it hard to read.

(Bitbake rev: cdaea8951df6b707afd1fefbf22295088256dd6f)

Signed-off-by: Marius Avram <marius.avram@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Marius Avram
2014-08-29 15:51:26 +03:00
committed by Richard Purdie
parent 69e5cbdac5
commit dfbb546492
2 changed files with 25 additions and 23 deletions

View File

@@ -26,7 +26,8 @@
<span class="help-inline" style="padding-top:5px;">Show rows:</span> <span class="help-inline" style="padding-top:5px;">Show rows:</span>
<select style="margin-top:5px;margin-bottom:0px;" class="pagesize"> <select style="margin-top:5px;margin-bottom:0px;" class="pagesize">
{% with "2 5 10 25 50 100" as list%} {% with "2 5 10 25 50 100" as list%}
{% for i in list.split %}<option value="{{i}}">{{i}}</option> {% for i in list.split %}
<option value="{{i}}">{{i}}</option>
{% endfor %} {% endfor %}
{% endwith %} {% endwith %}
</select> </select>

View File

@@ -212,7 +212,8 @@
<span class="help-inline" style="padding-top:5px;">Show rows:</span> <span class="help-inline" style="padding-top:5px;">Show rows:</span>
<select style="margin-top:5px;margin-bottom:0px;" class="pagesize"> <select style="margin-top:5px;margin-bottom:0px;" class="pagesize">
{% with "2 5 10 25 50 100" as list%} {% with "2 5 10 25 50 100" as list%}
{% for i in list.split %} <option value="{{i}}">{{i}}</option> {% for i in list.split %}
<option value="{{i}}">{{i}}</option>
{% endfor %} {% endfor %}
{% endwith %} {% endwith %}
</select> </select>