mirror of
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker.git
synced 2026-05-05 06:32:51 -05:00
12 lines
232 B
HTML
12 lines
232 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - All minifigures{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container-fluid px-0">
|
|
{% with all=true %}
|
|
{% include 'minifigure/table.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endblock %}
|