mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
Merge branch 'dev' of github.com:nielsnuebel/com_sportsmanager into dev
This commit is contained in:
@@ -4707,7 +4707,7 @@ global $params;
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div class="uk-overflow-auto">
|
<div class="uk-overflow-auto">
|
||||||
<table class="uk-table uk-table-hover uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
<table class="uk-table uk-table-hover uk-table-middle rangliste-width contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
|
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_RANKING'); ?></strong></th>
|
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_RANKING'); ?></strong></th>
|
||||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th>
|
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th>
|
||||||
@@ -6957,11 +6957,10 @@ global $params;
|
|||||||
<?php
|
<?php
|
||||||
if (count($rangliste_punkte) > 0) {
|
if (count($rangliste_punkte) > 0) {
|
||||||
?>
|
?>
|
||||||
<table class="uk-table uk-table-divider uk-table-hover uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
<table class="uk-table uk-table-divider uk-table-hover uk-table-middle rangliste-width contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
|
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
|
||||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_RANK'); ?></strong></th>
|
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_RANK'); ?></strong></th>
|
||||||
<th align="left"><strong><?php echo JText::_('COM_SPORTSMANAGER_PLAYER'); ?></strong></th>
|
<th align="left"><strong><?php echo JText::_('COM_SPORTSMANAGER_PLAYER'); ?></strong></th>
|
||||||
<th></th>
|
|
||||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th>
|
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
@@ -6981,24 +6980,21 @@ global $params;
|
|||||||
|
|
||||||
<td>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
if (($bild = bildHTML("spieler", !$details_anzeigen && $row->bild_ausblenden ? '' : $row->spieler_id, 57, 76, 0, 0, 'border="1" align="right" hspace="8" vspace="2"', $row->geschlecht == 'M' ? 'm' : 'w')) != null)
|
if (($bild = bildHTML("spieler", !$details_anzeigen && $row->bild_ausblenden ? '' : $row->spieler_id, 57, 76, 0, 0, 'border="1" align="left" hspace="8" vspace="2"', $row->geschlecht == 'M' ? 'm' : 'w')) != null)
|
||||||
echo $bild; ?>
|
echo $bild; ?>
|
||||||
</td>
|
|
||||||
|
|
||||||
<td>
|
|
||||||
<?php
|
<?php
|
||||||
if ($row->aktueller_verein_id == null)
|
if ($row->aktueller_verein_id == null)
|
||||||
echo htmlentities_utf8($row->nachname . ", " . $row->vorname);
|
echo htmlentities_utf8($row->nachname . ", " . $row->vorname);
|
||||||
else {
|
else {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<a href="<?php echo SportsManagerURL('&task=spieler_details&id=' . $row->spieler_id); ?>"><?php echo htmlentities_utf8($row->vorname . " " . $row->nachname); ?></a>
|
<a class="uk-align-center" href="<?php echo SportsManagerURL('&task=spieler_details&id=' . $row->spieler_id); ?>"><?php echo htmlentities_utf8($row->vorname . " " . $row->nachname); ?></a>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td align="center">
|
<td class="uk-align-center">
|
||||||
<a href="<?php echo SportsManagerURL('&task=ranglistenpunkte&rangliste_id=' . $rangliste->rangliste_id . "&spieler_id=" . $row->spieler_id); ?>"><?php echo $row->punkte; ?></a>
|
<a href="<?php echo SportsManagerURL('&task=ranglistenpunkte&rangliste_id=' . $rangliste->rangliste_id . "&spieler_id=" . $row->spieler_id); ?>"><?php echo $row->punkte; ?></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user