II Zespół - KS Azoty-Puławy S.A.

II Liga
Sezon 2022/2023

Kacper
OROŃ

Przemysław
WIKTOROWSKI

Filip
KOWALIK

Michał
MAKARA

Mateusz
PITUS

Ernest
CZERSKI
Квотербек

Mikołaj
URBANEK

Jakub
WAROWNY

Piotr
JUSZCZAK

Maciej
MARTYNIAK

Franciszek
GIZA

Paweł
LIS

Łukasz
MARASZKIEWICZ

Szymon
RYBICKI

Mateusz
KULESZA

Jan
ANTOLAK

Alan
KOZAK

Jakub
BYZDRA

Kuba
BEREZIŃSKI
Вінгери

Tobiasz
GÓRSKI

Kacper
CZOPEK

Oliver
NITKA

Szymon
SEKUŁA

Stanisław
TARKOWSKI

Wojciech
WŁUDARCZYK

Karol
WARDA

Jan
KLESZCZYŃSKI

Maciej
ŁUCJANEK
центр

Adrian
SZCZĘŚNIAK

Wiktor
KULIG

Bartosz
FURTAK

Patryk
ŁATA
SZTAB

Piotr Pezda - I trener

Piotr Dropek - II trener

Ryszard Antolak - sztab szkoleniowy

Karol Goś - sztab szkoleniowy

Michał Majcher - masażysta
Під час обробки запитаного шаблоку сталась помилка.
The following has evaluated to null or missing: ==> person.getPosition(locale) [in template "20100#20127#5356319" at line 31, column 119] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: ${person.getPosition(locale)} [in template "20100#20127#5356319" at line 31, column 117] ----
1<#assign playerProfileURLBuilder = serviceLocator.findService("com.neutrica.smotai.clubs.commons.util.URLBuilder")/>
2<#setting locale = locale>
3<#assign friendlyUrl=""/>
4
5<div class="team-container">
6 <div class="players-wrapper">
7 <#if entries?has_content>
8 <#list entries as group>
9 <#if group.getPeople()?has_content>
10 <#list group.getPeople() as person>
11 <div>
12 <#if singlePlayerPageId?has_content>
13 <#assign friendlyUrl = playerProfileURLBuilder.buildPlayerProfileURL(themeDisplay.getPlid(), person.id, person.firstName, person.lastName, person.getSeasonName(locale), singlePlayerPageId, renderResponse) />
14 </#if>
15 <div class="player animation-fade-in-left-trigger">
16 <#if person.getPhoto()?has_content>
17 <div class="photo">
18 <img loading="lazy" class="img-player" src="${person.getPhoto().getUrl()}?imageThumbnail=2" data-fileentryid="${person.getPhoto().getFileEntryId()}"
19 alt="${TranslationUtil.get("person-photo", locale, "com.neutrica.smotai.clubs.playersgrid.web")} - ${person.getFirstName()} ${person.getLastName()}">
20 </div>
21 </#if>
22 <div class="player-info-container">
23 <div class="details">
24 <div class="player-name">
25 <div>${person.getFirstName()}</div>
26 <div>${person.getLastName()}</div>
27 </div>
28 <#if person.getNumber() != 0>
29 <span class="number">#${person.getNumber()}</span>
30 <#else>
31 <p class="caption position">${person.getPosition(locale)}</p>
32 </#if>
33 </div>
34 </div>
35 </div>
36 </div>
37 </#list>
38 </#if>
39 </#list>
40 </#if>
41 </div>
42</div>