Spielerprofil Ranglistenplatzierung overflow

This commit is contained in:
Daniel Goerlich
2021-02-17 15:37:32 +01:00
parent 59f9d8c0e7
commit a7b14d1044
@@ -4701,16 +4701,17 @@ global $params;
?>
<table class="uk-table uk-table-responsive uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr>
<td nowrap class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"
<td class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"
width="100%"><h2><?php echo JText::_('COM_SPORTSMANAGER_RANKING_PLACEMENT'); ?></h2></td>
</tr>
</table>
<table class="uk-table uk-table-responsive uk-table-shrink uk-table-hover uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<div class="uk-overflow-auto">
<table class="uk-table uk-table-shrink uk-table-hover uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_RANKING'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_MESSAGES'); ?></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_MESSAGES'); ?></strong></th>
</tr>
<?php
@@ -4735,17 +4736,16 @@ global $params;
?>
<tr class="sectiontableentry<?php echo $k + 1;
$k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>">
<td nowrap><?php echo $platzierung->bezeichnung != null ? htmlentities_utf8($platzierung->bezeichnung) : ""; ?></td>
<td align="center"
nowrap><?php echo $platzierung->platz != null ? htmlentities_utf8($platzierung->platz) : ""; ?></td>
<td align="center"
nowrap><?php echo $platzierung->teilnehmer != null ? htmlentities_utf8($platzierung->teilnehmer) : ""; ?></td>
<td><?php echo $platzierung->bezeichnung != null ? htmlentities_utf8($platzierung->bezeichnung) : ""; ?></td>
<td align="center"><?php echo $platzierung->platz != null ? htmlentities_utf8($platzierung->platz) : ""; ?></td>
<td align="center"><?php echo $platzierung->teilnehmer != null ? htmlentities_utf8($platzierung->teilnehmer) : ""; ?></td>
<?php /* <td nowrap><?php echo htmlentities_utf8(FormatiertesDatum($platzierung->erster_tag, false, false)) . " - " . htmlentities_utf8(FormatiertesDatum($platzierung->letzter_tag, false, false)); ?></td> */ ?>
</tr>
<?php
}
?>
</table>
</div>
<span class="article_seperator<?php echo $params->get('pageclass_sfx'); ?>">&nbsp;</span>
<?php
}