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 }
|
||||
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>
|
||||
<td><?php echo strpos($beschreibung, ">") !== false ? $beschreibung : htmlentities_utf8($beschreibung); ?></td>
|
||||
</tr>
|
||||
@@ -5721,11 +5721,11 @@ global $params;
|
||||
if (count($saisons) > 0) {
|
||||
?>
|
||||
<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>
|
||||
<td nowrap>
|
||||
<?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
|
||||
foreach ($saisons as $saison)
|
||||
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