{% extends "part/part_base.html" %} {% load static %} {% block details %} {% include 'part/tabs.html' with tab='build' %}

Part Builds

{% if part.active_builds|length > 0 %} {% include "part/build_list.html" with builds=part.active_builds %} {% endif %} {% if part.inactive_builds|length > 0 %} {% include "part/build_list.html" with builds=part.inactive_builds %} {% endif %}
Title Quantity Status Completion Date
Active Builds
Inactive Builds
{% endblock %} {% block js_ready %} {{ block.super }} $("#start-build").click(function() { launchModalForm("#modal-form", "{% url 'build-create' %}", { follow: true, data: { part: {{ part.id }} } }); }); {% endblock %}