mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-18 05:52:15 +00:00
19 lines
498 B
HTML
19 lines
498 B
HTML
{% extends 'base_training.html' %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
{% for category in categories %}
|
|
<div class="col">
|
|
<div class="card mb-3">
|
|
<h4 class="card-header">{{ category.name }}</h4>
|
|
<div class="list-group list-group-flush">
|
|
{% for item in category.items.all %}
|
|
<li class="list-group-item">{{ item }}</li>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|