{% import 'macro/accordion.html' as accordion %} {% extends 'base.html' %} {% block title %} - {% if not bulk %}Add a set{% else %}Bulk add sets{% endif %}{% endblock %} {% block main %}
{% if not bulk and (not config['HIDE_ADD_BULK_SET'] or (not config['HIDE_INDIVIDUAL_PARTS'] and not config['DISABLE_INDIVIDUAL_PARTS'])) %}
{% if not config['HIDE_ADD_BULK_SET'] %}
{% endif %} {% if not config['HIDE_INDIVIDUAL_PARTS'] and not config['DISABLE_INDIVIDUAL_PARTS'] %}
{% endif %}
{% endif %}
{% if not bulk %}Add a set{% else %}Bulk add sets{% endif %}
{% if not bulk %} {% else %}
{% endif %}
Sets: use format like 107-1{% if not config.get('HIDE_INDIVIDUAL_MINIFIGURES', False) and not config.get('DISABLE_INDIVIDUAL_MINIFIGURES', False) %}. Minifigures: use format like fig-001234{% endif %}
Metadata
{% 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 %} {{ accordion.header('Purchase', 'purchase', 'metadata', icon='wallet-3-line') }}
Date
Price {% if config['PURCHASE_CURRENCY'] %}{{ config['PURCHASE_CURRENCY'] }}{% endif %}
{% if brickset_purchase_locations | length %}
Location
{% endif %}
{{ accordion.footer() }} {{ accordion.header('Notes', 'notes', 'metadata', icon='sticky-note-line') }} {{ accordion.footer() }} {% if brickset_storages | length %} {{ accordion.header('Storage', 'storage', 'metadata', icon='archive-2-line') }}
{{ accordion.footer() }} {% endif %} {% if brickset_statuses | length %} {{ accordion.header('Statuses', 'statuses', 'metadata', icon='checkbox-circle-line') }}
{% for status in brickset_statuses %} {% with id=status.as_dataset() %}
{% endwith %} {% endfor %}
{{ accordion.footer() }} {% endif %} {% if brickset_tags | length %} {{ accordion.header('Tags', 'tags', 'metadata', icon='price-tag-2-line') }}
{% for tag in brickset_tags %} {% with id=tag.as_dataset() %}
{% endwith %} {% endfor %}
{{ accordion.footer() }} {% endif %}

Progress Loading...

{% if not bulk %} {% endif %}
{% if bulk %} {% with id='add', bulk=bulk %} {% include 'set/socket.html' %} {% endwith %} {% endif %} {% endblock %}