{if $person.image !== null}
{/if}
{$person.name}
Дата рождения: {$person.birthday|date_format:"%d.%m.%Y"} (возраст: {$person.birthday|age} {$person.birthday|age|plural:"год,года,лет"})
{if $person.is_judge == true}
Судья ({$person.judge_category})
{/if} {if $person.is_trainer == true}
Тренер
{/if}
{if count($seasons) > 0}
По сезонам:
Все сезоны
{foreach $seasons as $season} {if $season.name !==null}
{$season.name}
{/if} {/foreach}
{/if} {if count($games) > 0}
Участия в играх
Дата
Город
Матч
Результат
Участие
Сезон
{foreach $games as $game}
{$game.play_date|date_format:"%d.%m.%Y"}
{$game.play_city}
{$game|link:"protocol"}
{$game.score}
{$game|vacant}
{$game.season.name}
{/foreach}
{/if}