{% import 'macro/accordion.html' as accordion %} {% extends 'base.html' %} {% block title %} - Add individual parts{% endblock %} {% block main %}
Add individual parts
Enter the Rebrickable part number (e.g., 3001, 3622, etc.)
Each part is added to your inventory as soon as you select it
Parts are added to a cart and saved together as individual parts (no lot created)
Parts are added to a cart and saved together as a lot
Upload a CSV file with columns: Part, Color, Quantity (automatically enables Lot Mode)
Cart 0

Progress Loading...

Select Color
Metadata
{% if not (brickset_owners | length) and not (brickset_purchase_locations | length) and not (brickset_storages | length) and not (brickset_tags | length) %} {% else %} {% if brickset_owners | length %} {{ accordion.header('Owners', 'owners', 'metadata', icon='user-line') }}
{% for owner in brickset_owners %} {% with id=owner.as_dataset() %}
{% endwith %} {% endfor %}
{{ accordion.footer() }} {% endif %} {% if brickset_purchase_locations | length %} {{ accordion.header('Purchase location', 'purchase-location', 'metadata', icon='building-line') }}
{{ accordion.footer() }} {% endif %} {% if brickset_storages | length %} {{ accordion.header('Storage', 'storage', 'metadata', icon='archive-line') }}
{{ accordion.footer() }} {% endif %} {% if brickset_tags | length %} {{ accordion.header('Tags', 'tags', 'metadata', icon='price-tag-3-line') }}
{% for tag in brickset_tags %} {% with id=tag.as_dataset() %}
{% endwith %} {% endfor %}
{{ accordion.footer() }} {% endif %} {% if brickset_purchase_locations | length %} {{ accordion.header('Purchase details', 'purchase', 'metadata', icon='money-dollar-circle-line') }}
{{ accordion.footer() }} {% endif %} {% endif %}
{% endblock %}