Ranglistenpunkte remove nowrap

This commit is contained in:
Daniel Goerlich
2021-02-19 16:02:45 +01:00
parent f775a274e5
commit 4a28bea9a5
@@ -7098,7 +7098,7 @@ global $params;
?> ?>
<table class="uk-table uk-table-responsive uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>"> <table class="uk-table uk-table-responsive uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr> <tr>
<td nowrap class="contentheading<?php echo $params->get('pageclass_sfx'); ?>" <td class="contentheading<?php echo $params->get('pageclass_sfx'); ?>"
width="100%"><?php echo JText::_('COM_SPORTSMANAGER_TOURNAMENT_PLACEMENT'); ?></td> width="100%"><?php echo JText::_('COM_SPORTSMANAGER_TOURNAMENT_PLACEMENT'); ?></td>
</tr> </tr>
</table> </table>
@@ -7106,13 +7106,13 @@ global $params;
<div class="uk-overflow-auto"> <div class="uk-overflow-auto">
<table class="uk-table uk-table-striped uk-table-hover uk-table-middle contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>"> <table class="uk-table uk-table-striped 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_TOURNAMENT'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_TOURNAMENT'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_LOCATION'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_LOCATION'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_DISCIPLINE'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_DISCIPLINE'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_DATE'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_DATE'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th> <th><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_MESSAGES'); ?></strong></th>
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th> <th><strong><?php echo JText::_('COM_SPORTSMANAGER_POINTS'); ?></strong></th>
</tr> </tr>
<?php <?php
@@ -7121,17 +7121,13 @@ global $params;
?> ?>
<tr class="sectiontableentry<?php echo $k + 1; <tr class="sectiontableentry<?php echo $k + 1;
$k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>"> $k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>">
<td nowrap><?php echo $platzierung->turnierbezeichnung != null ? htmlentities_utf8($platzierung->turnierbezeichnung) : ""; ?></td> <td><?php echo $platzierung->turnierbezeichnung != null ? htmlentities_utf8($platzierung->turnierbezeichnung) : ""; ?></td>
<td nowrap><?php echo $platzierung->turnierort != null ? htmlentities_utf8($platzierung->turnierort) : ""; ?></td> <td><?php echo $platzierung->turnierort != null ? htmlentities_utf8($platzierung->turnierort) : ""; ?></td>
<td align="left" <td align="left"><?php echo $platzierung->disziplin != null ? htmlentities_utf8($platzierung->disziplin) : ""; ?></td>
nowrap><?php echo $platzierung->disziplin != null ? htmlentities_utf8($platzierung->disziplin) : ""; ?></td> <td><?php echo $platzierung->beginn == null ? "" : htmlentities_utf8(FormatiertesDatum($platzierung->beginn, false)); ?></td>
<td nowrap><?php echo $platzierung->beginn == null ? "" : htmlentities_utf8(FormatiertesDatum($platzierung->beginn, false)); ?></td> <td align="center"><?php echo $platzierung->platz != null ? htmlentities_utf8($platzierung->platz) : ""; ?></td>
<td align="center" <td align="center"><?php echo $platzierung->teilnehmer != null ? htmlentities_utf8($platzierung->teilnehmer) : ""; ?></td>
nowrap><?php echo $platzierung->platz != null ? htmlentities_utf8($platzierung->platz) : ""; ?></td> <td align="center"><?php echo isset($streichergebnisse[$platzierung->turnierdisziplin_id]) ? ("<s>&nbsp;" . (empty($platzierung->punkte) ? "0" : $platzierung->punkte) . "&nbsp;</s>") : (empty($platzierung->punkte) ? "0" : $platzierung->punkte); ?></td>
<td align="center"
nowrap><?php echo $platzierung->teilnehmer != null ? htmlentities_utf8($platzierung->teilnehmer) : ""; ?></td>
<td align="center"
nowrap><?php echo isset($streichergebnisse[$platzierung->turnierdisziplin_id]) ? ("<s>&nbsp;" . (empty($platzierung->punkte) ? "0" : $platzierung->punkte) . "&nbsp;</s>") : (empty($platzierung->punkte) ? "0" : $platzierung->punkte); ?></td>
</tr> </tr>
<?php <?php
} }