{% extends "base.html" %} {% block page_title %} InvenTree | Index {% endblock %} {% block content %}

InvenTree


{% include "InvenTree/starred_parts.html" with collapse_id="starred" %} {% if to_order %} {% include "InvenTree/parts_to_order.html" with collapse_id="order" %} {% endif %} {% if to_build %} {% include "InvenTree/parts_to_build.html" with collapse_id="build" %} {% endif %} {% endblock %} {% block js_load %} {{ block.super }} {% endblock %} {% block js_ready %} console.log("abcde?"); {{ block.super }} //TODO: These calls to bootstrapTable() are failing, for some reason? //$("#to-build-table").bootstrapTable(); //$("#to-order-table").bootstrapTable(); //$("#starred-parts-table").bootstrapTable(); console.log("Got to here..."); {% endblock %}