{% extends 'base.html' %} {% load staticfiles %} {% block title %} {% endblock %} {% block menu %} {% if profile.role == 'A' %}
  • Edit Part
  • Manage BOM
  • {% endif %}
  • Export
  • {% endblock%} {% block content %}

    Item #{{ part.full_part_number}}

    {{ part.description }}

    {% if messages %} {% endif %}

    Description:
    {{ part.description }}
    Revision:
    {{ part.revision }}
    Manufacturer:
    {{ part.manufacturer.name }}
    Manufacturer Part Number:
    {{ part.manufacturer_part_number }}

    Est. Cost:
    {% csrf_token %} ${{ unit_cost }} at
    {{ part_info_form }}
    units. {% if not extended_cost_complete %}(!){% endif %}
    Est. Total NRE:
    ${{ unit_nre }}
    Est. Unit Out Of Pocket:
    ${{ unit_out_of_pocket_cost }}
    Est. Total Out Of Pocket:
    ${{ total_out_of_pocket_cost }}
      {% for subpart in parts %} {% ifchanged subpart.indent_level %}{% endifchanged %} {% endfor %}
      Level Part No. Qty Description Rev Manufacturer MPN
      {% with ''|center:subpart.indent_level as range %} {% for _ in range %}   {% endfor %} {% endwith %} {{ subpart.indent_level }} {{ subpart.part.full_part_number }} {{ subpart.quantity }}
      {{ subpart.part.description }}
      {{ subpart.part.revision }} {{ subpart.part.manufacturer.name }} {{ subpart.part.manufacturer_part_number }}

    {% for used_part in where_used %} {% empty %} {% endfor %}
    Part Number Description Rev Manufacturer MPN
    {{ used_part.full_part_number }} {{ used_part.description }} {{ used_part.revision }} {{ used_part.manufacturer.name }} {{ used_part.manufacturer_part_number }}
    This part is not currently used in any of your other parts.
    {% for seller_part in seller_parts %} {% empty %} {% endfor %}
    Seller MOQ MPQ Price Lead Time (days) NRE NCNR
    {{ seller_part.seller.name }} {{ seller_part.minimum_order_quantity }} {{ seller_part.minimum_pack_quantity }} {{ seller_part.unit_cost }} {{ seller_part.lead_time_days }} {{ seller_part.nre_cost }} {{ seller_part.ncnr }}
    This part has no sellers entered yet.
    Add Seller Part Find Sellers From Octopart
    {% endblock %}