mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-18 22:12:14 +00:00
14 lines
274 B
HTML
14 lines
274 B
HTML
{% extends 'base_rigs.html' %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
{% for category in categories %}
|
|
<div class="col">
|
|
<div class="card">
|
|
<h4 class="card-header">{{ category.name }}</h4>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|