Rangliste remove inside table for player

This commit is contained in:
Daniel Goerlich
2021-02-09 17:53:14 +01:00
parent 02b3f9ecbf
commit a62ed9c539
@@ -6996,9 +6996,10 @@ global $params;
?> ?>
<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 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 nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_RANK'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_RANK'); ?></strong></th>
<th nowrap align="left"><strong><?php echo JText::_('COM_SPORTSMANAGER_PLAYER'); ?></strong></th> <th align="left"><strong><?php echo JText::_('COM_SPORTSMANAGER_PLAYER'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th> <th></th>
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th>
</tr> </tr>
<?php <?php
@@ -7014,15 +7015,14 @@ global $params;
echo $row->platz; echo $row->platz;
?> ?>
</td> </td>
<td> <td>
<table class="uk-table" border="0" cellspacing="0" cellpadding="0" >
<tr>
<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="right" hspace="8" vspace="2"', $row->geschlecht == 'M' ? 'm' : 'w')) != null)
echo $bild; ?> echo $bild; ?>
</td> </td>
<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);
@@ -7033,10 +7033,8 @@ global $params;
<?php <?php
} }
?> ?>
</td>
</tr>
</table>
</td> </td>
<td align="center"> <td 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>