{% extends "base.html" %} {% load static %} {% block content %}

Part Builds

{% include "build/build_list.html" with builds=builds %}
Build Part Quantity Status
{% include 'modals.html' %} {% endblock %} {% block js_load %} {% endblock %} {% block js_ready %} $("#new-build").click(function() { launchModalForm("#modal-form", "{% url 'build-create' %}", { follow: true }); }); $("#build-table").bootstrapTable({ sortable: true, search: true, columns: [ { field: 'name', title: 'Build', sortable: true, }, { field: 'part', title: 'Part', sortable: true, }, { title: 'Quantity', sortable: true, searchable: false }, { title: 'Status', sortable: true, } ] }); {% endblock %}