mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37:52 +00:00
Select in view.html to width medium
This commit is contained in:
@@ -119,7 +119,7 @@ function veranstaltungenHeader($titel, $beschreibung, $saisons, $filter_saison_i
|
||||
?>
|
||||
<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>";
|
||||
@@ -285,7 +285,7 @@ function turniereHeader($titel, $beschreibung, $saisons, $filter_saison_id) {
|
||||
<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>";
|
||||
@@ -1874,7 +1874,7 @@ global $params;
|
||||
<table class="uk-table uk-table-responsive contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||
<tr>
|
||||
<td nowrap>
|
||||
<select name="spieltag" size="1" onChange="document.adminForm.submit();">
|
||||
<select class="uk-select uk-form-width-medium" name="spieltag" size="1" onChange="document.adminForm.submit();">
|
||||
<?php
|
||||
foreach ($spieltage as $s) {
|
||||
echo "<option value=\"" . $s->spieltag . "\"" . ($s->spieltag == $spieltag ? " selected" : "") . ">" . htmlentities_utf8(Rundenbezeichnung($s->spieltag, $veranstaltung->unterteilung == 0)) . "</option>";
|
||||
@@ -2320,7 +2320,7 @@ global $params;
|
||||
<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>";
|
||||
@@ -4158,7 +4158,7 @@ global $params;
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_CATEGORY'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<select name="kategorie" size="1">
|
||||
<select class="uk-select uk-form-width-medium" name="kategorie" size="1">
|
||||
<?php
|
||||
$kategorie_titel = array(JText::_('COM_SPORTSMANAGER_CATEGORY_ALL'), JText::_('COM_SPORTSMANAGER_CATEGORY_MEN'), JText::_('COM_SPORTSMANAGER_CATEGORY_WOMEN'), JText::_('COM_SPORTSMANAGER_CATEGORY_JUNIORS'), JText::_('COM_SPORTSMANAGER_CATEGORY_SENIORS'));
|
||||
$kategorie_wert = array('', 'H', 'D', 'J', 'S');
|
||||
@@ -4177,7 +4177,7 @@ global $params;
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_CLASSIFICATION'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<select name="einstufungid" size="1">
|
||||
<select class="uk-select uk-form-width-medium" name="einstufungid" size="1">
|
||||
<?php
|
||||
echo "<option value=\"0\">" . JText::_('COM_SPORTSMANAGER_CATEGORY_ALL') . "</option>";
|
||||
foreach ($einstufungen as $einstufung_id => $bezeichnung) {
|
||||
@@ -4196,7 +4196,7 @@ global $params;
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_ORGANIZER'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<select name="veranstalterid" size="1">
|
||||
<select class="uk-select uk-form-width-medium" name="veranstalterid" size="1">
|
||||
<?php
|
||||
echo "<option value=\"0\">" . JText::_('COM_SPORTSMANAGER_CATEGORY_ALL') . "</option>";
|
||||
foreach ($veranstalter as $v) {
|
||||
@@ -4215,7 +4215,7 @@ global $params;
|
||||
<?php echo JText::_('COM_SPORTSMANAGER_EVENT'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<select name="veranstaltungid" size="1">
|
||||
<select class="uk-select uk-form-width-medium" name="veranstaltungid" size="1">
|
||||
<?php
|
||||
echo "<option value=\"0\">" . JText::_('COM_SPORTSMANAGER_CATEGORY_ALL') . "</option>";
|
||||
foreach ($veranstaltungen as $v) {
|
||||
@@ -5332,7 +5332,7 @@ global $params;
|
||||
?>
|
||||
}
|
||||
</script>
|
||||
<select name="datum_tag_<?php echo $termin; ?>" size="1"
|
||||
<select class="uk-select uk-form-width-medium" name="datum_tag_<?php echo $termin; ?>" size="1"
|
||||
onChange="termin_changed_<?php echo $termin; ?>();">
|
||||
<?php
|
||||
$datum = "0000-00-00";
|
||||
@@ -5345,7 +5345,7 @@ global $params;
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<select name="datum_monat_<?php echo $termin; ?>" size="1"
|
||||
<select class="uk-select uk-form-width-medium" name="datum_monat_<?php echo $termin; ?>" size="1"
|
||||
onChange="termin_changed_<?php echo $termin; ?>();">
|
||||
<?php
|
||||
$datum_monat = substr($datum, 5, 2);
|
||||
@@ -5356,7 +5356,7 @@ global $params;
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<select name="datum_jahr_<?php echo $termin; ?>" size="1"
|
||||
<select class="uk-select uk-form-width-medium" name="datum_jahr_<?php echo $termin; ?>" size="1"
|
||||
onChange="termin_changed_<?php echo $termin; ?>();">
|
||||
<?php
|
||||
$datum_jahr = substr($datum, 0, 4);
|
||||
@@ -5366,7 +5366,7 @@ global $params;
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<select name="uhrzeit_stunden_<?php echo $termin; ?>" size="1"
|
||||
<select class="uk-select uk-form-width-medium" name="uhrzeit_stunden_<?php echo $termin; ?>" size="1"
|
||||
onChange="termin_changed_<?php echo $termin; ?>();">
|
||||
<?php
|
||||
$stunden = -1;
|
||||
@@ -5378,7 +5378,7 @@ global $params;
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<select name="uhrzeit_minuten_<?php echo $termin; ?>" size="1"
|
||||
<select class="uk-select uk-form-width-medium" name="uhrzeit_minuten_<?php echo $termin; ?>" size="1"
|
||||
onChange="termin_changed_<?php echo $termin; ?>();">
|
||||
<?php
|
||||
$minuten = -1;
|
||||
@@ -6037,7 +6037,7 @@ global $params;
|
||||
<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