{% extends 'base.html' %} {% import 'macro/form.html' as form %} {% block title %} - Individual Minifigures{% endblock %} {% block main %}

Individual Minifigures

Add Minifigures
{% if minifigures | length %}
{% for item in minifigures %}
{% include 'individual_minifigure/card.html' with context %}
{% endfor %}
{% else %}
{% endif %}
{% endblock %}