{% extends BASE_TEMPLATE %} {% load materializecss %} {% load staticfiles %} {% block head-title %}{{ title }}{% endblock %} {% block main %} {% endblock %} {% block menu %}
  • Cancel
  • {% endblock %} {% block content %}
    {% if profile.role == 'A' %} {% if h1 %}

    {{ h1 }}

    {% endif %}
    {% csrf_token %} {% include 'bom/part-revision-display.html' with part_revision_form=part_revision_new_form %} {{ part_revision_new_form.copy_assembly|materializecss:'m6 s12' }}
    {% if used_part_revisions.count > 0 %}
    This part is used by {{ used_part_revisions.count }} working parent assemblies. Select any parent assemblies you want to roll this revision into:
    {% for upr in used_part_revisions %}
    {% endfor %}
    {% endif %}
    {% else %} {% include 'bom/nothing-to-see.html' with required_privilege='Admin' %} {% endif %}
    {% endblock %}