diff --git a/InvenTree/templates/InvenTree/index.html b/InvenTree/templates/InvenTree/index.html index df2ae1414a..b0c2d0ae02 100644 --- a/InvenTree/templates/InvenTree/index.html +++ b/InvenTree/templates/InvenTree/index.html @@ -8,41 +8,19 @@ InvenTree | Index <h3>InvenTree</h3> <hr> -<div class="row"> - <div class="col-sm-6"> - {% include "InvenTree/latest_parts.html" with collapse_id="latest_parts" %} - </div> - <div class="col-sm-6"> - {% include "InvenTree/starred_parts.html" with collapse_id="starred" %} - </div> +<div class='col-sm-6'> + {% include "InvenTree/latest_parts.html" with collapse_id="latest_parts" %} + {% include "InvenTree/bom_invalid.html" with collapse_id="bom_invalid" %} + {% include "InvenTree/low_stock.html" with collapse_id="order" %} + {% include "InvenTree/po_outstanding.html" with collapse_id="po_outstanding" %} + </div> +<div class='col-sm-6'> + {% include "InvenTree/starred_parts.html" with collapse_id="starred" %} + {% include "InvenTree/build_pending.html" with collapse_id="build_pending" %} + {% include "InvenTree/required_stock_build.html" with collapse_id="stock_to_build" %} + {% include "InvenTree/so_outstanding.html" with collapse_id="so_outstanding" %} - -<div class="row"> - <div class="col-sm-6"> - {% include "InvenTree/bom_invalid.html" with collapse_id="bom_invalid" %} - </div> - <div class="col-sm-6"> - {% include "InvenTree/build_pending.html" with collapse_id="build_pending" %} - </div> -</div> - -<div class="row"> - <div class="col-sm-6"> - {% include "InvenTree/low_stock.html" with collapse_id="order" %} - </div> - <div class="col-sm-6"> - {% include "InvenTree/required_stock_build.html" with collapse_id="stock_to_build" %} - </div> -</div> - -<div class="row"> - <div class="col-sm-6"> - {% include "InvenTree/po_outstanding.html" with collapse_id="po_outstanding" %} - </div> - <div class="col-sm-6"> - {% include "InvenTree/so_outstanding.html" with collapse_id="so_outstanding" %} - </div> </div> {% endblock %}