mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
Ranglistenübersicht Anpassungen Header
This commit is contained in:
@@ -5711,7 +5711,7 @@ global $params;
|
|||||||
class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo htmlentities_utf8($titel); ?></div><?php }
|
class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo htmlentities_utf8($titel); ?></div><?php }
|
||||||
if (!empty($beschreibung)) {
|
if (!empty($beschreibung)) {
|
||||||
?>
|
?>
|
||||||
<table class="contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
<table class="uk-table uk-table-responsive contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo strpos($beschreibung, ">") !== false ? $beschreibung : htmlentities_utf8($beschreibung); ?></td>
|
<td><?php echo strpos($beschreibung, ">") !== false ? $beschreibung : htmlentities_utf8($beschreibung); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -5721,11 +5721,11 @@ global $params;
|
|||||||
if (count($saisons) > 0) {
|
if (count($saisons) > 0) {
|
||||||
?>
|
?>
|
||||||
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
||||||
<table class="contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
<table class="uk-table uk-table-responsive contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<tr>
|
<tr>
|
||||||
<td nowrap>
|
<td nowrap>
|
||||||
<?php echo JText::_('COM_SPORTSMANAGER_SEASON'); ?>:
|
<?php echo JText::_('COM_SPORTSMANAGER_SEASON'); ?>:
|
||||||
<select name="filter_saison_id" size="1" onChange="document.adminForm.submit();">
|
<select class="uk-select uk-form-width-medium" name="filter_saison_id" size="1" onChange="document.adminForm.submit();">
|
||||||
<?php
|
<?php
|
||||||
foreach ($saisons as $saison)
|
foreach ($saisons as $saison)
|
||||||
echo "<option value=\"" . $saison->saison_id . "\" " . ($filter_saison_id == $saison->saison_id ? "selected" : "") . ">" . htmlentities_utf8($saison->saisonbezeichnung) . "</option>";
|
echo "<option value=\"" . $saison->saison_id . "\" " . ($filter_saison_id == $saison->saison_id ? "selected" : "") . ">" . htmlentities_utf8($saison->saisonbezeichnung) . "</option>";
|
||||||
|
|||||||
Reference in New Issue
Block a user