mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37:52 +00:00
Spielerprofil Meldungen overflow
This commit is contained in:
@@ -4707,7 +4707,7 @@ global $params;
|
||||
</table>
|
||||
|
||||
<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'); ?>">
|
||||
<table class="uk-table uk-table-hover uk-table-middle contentpaneopen<?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_PLACE'); ?></strong></th>
|
||||
@@ -4754,19 +4754,20 @@ global $params;
|
||||
?>
|
||||
<table class="uk-table uk-table-responsive 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_MESSAGES'); ?></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_TOURNAMENT'); ?></strong></th>
|
||||
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_LOCATION'); ?></strong></th>
|
||||
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_DISCIPLINE'); ?></strong></th>
|
||||
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_DATE'); ?></strong></th>
|
||||
<th nowrap><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th>
|
||||
<th nowrap><strong>Meldungen</strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_TOURNAMENT'); ?></strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_DATE'); ?></strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_LOCATION'); ?></strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_DISCIPLINE'); ?></strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_PLACE'); ?></strong></th>
|
||||
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_MESSAGES'); ?></strong></th>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
@@ -4791,20 +4792,18 @@ global $params;
|
||||
?>
|
||||
<tr class="sectiontableentry<?php echo $k + 1;
|
||||
$k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>">
|
||||
<td nowrap><?php echo $platzierung->turnierbezeichnung != null ? htmlentities_utf8($platzierung->turnierbezeichnung) : ""; ?></td>
|
||||
<td nowrap><?php echo $platzierung->turnierort != null ? htmlentities_utf8($platzierung->turnierort) : ""; ?></td>
|
||||
<td align="left"
|
||||
nowrap><?php echo $platzierung->disziplin != null ? htmlentities_utf8($platzierung->disziplin) : ""; ?></td>
|
||||
<td nowrap><?php echo $platzierung->beginn == null ? "" : htmlentities_utf8(FormatiertesDatum($platzierung->beginn, false)); ?></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->turnierbezeichnung != null ? htmlentities_utf8($platzierung->turnierbezeichnung) : ""; ?></td>
|
||||
<td><?php echo $platzierung->beginn == null ? "" : htmlentities_utf8(FormatiertesDatum($platzierung->beginn, false)); ?></td>
|
||||
<td><?php echo $platzierung->turnierort != null ? htmlentities_utf8($platzierung->turnierort) : ""; ?></td>
|
||||
<td align="left"><?php echo $platzierung->disziplin != null ? htmlentities_utf8($platzierung->disziplin) : ""; ?></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>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
<span class="article_seperator<?php echo $params->get('pageclass_sfx'); ?>"> </span>
|
||||
<?php
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user