Ranglisten";
$options = 'Jahres-Rangliste ';
// $options .= 'Jugend-Rangliste ';
// $options .= '' . $_CLASS['youth-german-name'] . '-Rangliste ';
// $options .= 'Benutzerdefiniert ';
$content .= $tpl->load('select', ['html-id' => 'select-type', 'placeholder' => 'Rangliste', 'options' => $options, 'css-class' => 'mt-3 mb-0']);
$content .= $tpl->load('select', ['html-id' => 'select-year', 'placeholder' => 'Jahr', 'css-class' => 'mt-3 mb-0']);
$content .= $tpl->load('input', ['html-id' => 'input-from', 'placeholder' => 'Von', 'type' => 'date', 'css-class' => 'mt-3']);
$content .= $tpl->load('input', ['html-id' => 'input-to', 'placeholder' => 'Bis', 'type' => 'date']);
$chbox = $tpl->load('checkbox', ['html-id' => 'input-jugend', 'placeholder' => 'Jugend']);
$content .= '
' . $chbox . '
';
$chbox = $tpl->load('checkbox', ['html-id' => 'input-jugstrict', 'placeholder' => 'Streng']);
$content .= '' . $chbox . '
';
$content .= $tpl->load('button', ['Anzeigen', '#', 'html-id' => 'button-show']);
$sp['output'] .= $tpl->load('card', [$content]);
// TODO
$content = 'Störung ';
$content .= 'Momentan können wir Dir hier leider nur die Jahresrangliste anzeigen. ';
$content .= 'Um die anderen Ranglisten zu sehen, besuche bitte unsere Webseite .
';
$sp['output'] .= $tpl->load('card', [$content]);
// No Results
$content = 'ACHTUNG ';
$content .= 'Zu folgenden Regatten wurden noch keine Ergebnisse hinterlegt:
';
$content .= '';
$sp['output'] .= $tpl->load('card', [$content, 'html-id' => 'card-noresults', 'css-class' => 'bg-red2-dark']);
// Ranking
$content = $tpl->load('input', ['html-id' => 'input-search', 'placeholder' => 'Suche', 'type' => 'text']);
$content .= '
';
$sp['output'] .= $tpl->load('card', [$content, 'html-id' => 'card-rank']);
// Menu
$items = '';
$items .= '
';
$sp['menus'] .= $tpl->load('menu/bottom', [$items, 'html-id' => 'menu-rank', 'title' => 'Ranglisten-Details', 'height' => 500]);
$sp['scripts'] .= $scripts->load('rank');
?>