{% extends 'base.html.twig' %}
{% set days = app.request.server.get('DAYS')|split(',') %}
{% block title %}Zatoka Kodu - wybierz grupę{% endblock %}
{% block body %}
<main>
<!-- =======================
Page Banner START -->
<section class="bg-blue align-items-center d-flex" style="background:url({{ asset('./assets/images/pattern/04.png') }}) no-repeat center center; background-size:cover;">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Title -->
<h1 class="text-white">Lista Nowych Grup</h1>
</div>
</div>
</div>
</section>
<!-- ======================
Page Banner END -->
<!-- =======================
Page content START -->
<section class="py-5">
<div class="container">
<div class="row">
<div class="card-body p-4">
<div class="row g-4">
<!-- Category item -->
<div class="col-sm-6 col-lg-12 col-xl-12 text-center">
<h2>W najbliższym czasie planujemy rozpoczęcie następujących grup</h2>
</div>
{% for group in groupList %}
<!-- Category item -->
<div class="col-sm-6 col-lg-4 col-xl-4">
<div class="card card-body shadow h-100">
<h5 class="text-center">{{ days[group.day] }} {{ group.hour }}</h5>
<h7 class="text-center">Początek kursu: {{ group.date_start }}</h7>
<a href="/grupa/{{ group.id }}/zarejestruj" style="margin-top:50px;" class="btn btn-warning mb-3 w-100">Zapisz się</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div><!-- Row END -->
</div>
</section>
<!-- =======================
Page content END -->
</main>
<!-- **************** MAIN CONTENT END **************** -->
{% endblock %}