mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-15 17:47:10 +00:00
Remove empty table footers, move J4 pagination out of table
This commit is contained in:
parent
fe8cd75b0f
commit
17b2521ef1
@ -83,43 +83,37 @@ $colSpan = $this->trackerAlias !== false ? 8 : 7;
|
|||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
|
||||||
<th width="5%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_PULL_ID'); ?>
|
|
||||||
</th>
|
|
||||||
<th class="nowrap">
|
|
||||||
<?php echo \JText::_('JGLOBAL_TITLE'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_BRANCH'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_READY_TO_COMMIT'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
|
|
||||||
</th>
|
|
||||||
<?php if ($this->trackerAlias !== false) : ?>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
|
||||||
</th>
|
|
||||||
<?php endif; ?>
|
|
||||||
<th width="10%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('JSTATUS'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="15%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_TEST_THIS_PATCH'); ?>
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tfoot>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="<?php echo $colSpan; ?>">
|
<th width="5%" class="nowrap center">
|
||||||
</td>
|
<?php echo \JText::_('COM_PATCHTESTER_PULL_ID'); ?>
|
||||||
|
</th>
|
||||||
|
<th class="nowrap">
|
||||||
|
<?php echo \JText::_('JGLOBAL_TITLE'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_BRANCH'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_READY_TO_COMMIT'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
|
||||||
|
</th>
|
||||||
|
<?php if ($this->trackerAlias !== false) : ?>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
||||||
|
</th>
|
||||||
|
<?php endif; ?>
|
||||||
|
<th width="10%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('JSTATUS'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="15%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_TEST_THIS_PATCH'); ?>
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php echo $this->loadTemplate('items'); ?>
|
<?php echo $this->loadTemplate('items'); ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
@ -141,16 +141,14 @@ $colSpan = $this->trackerAlias !== false ? 8 : 7;
|
|||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tfoot>
|
|
||||||
<tr>
|
|
||||||
<td colspan="<?php echo $colSpan; ?>"><?php echo $this->pagination->getListFooter(); ?></td>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php echo $this->loadTemplate('items'); ?>
|
<?php echo $this->loadTemplate('items'); ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php echo $this->pagination->getListFooter(); ?>
|
||||||
|
|
||||||
<input type="hidden" name="task" value="" />
|
<input type="hidden" name="task" value="" />
|
||||||
<input type="hidden" name="boxchecked" value="0" />
|
<input type="hidden" name="boxchecked" value="0" />
|
||||||
<input type="hidden" name="pull_id" id="pull_id" value="" />
|
<input type="hidden" name="pull_id" id="pull_id" value="" />
|
||||||
|
@ -74,43 +74,37 @@ echo \JHtml::_(
|
|||||||
|
|
||||||
<table class="adminlist">
|
<table class="adminlist">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
|
||||||
<th width="5%" class="nowrap center">
|
|
||||||
<?php echo \JHtml::_('grid.sort', 'COM_PATCHTESTER_PULL_ID', 'a.pull_id', $listDirn, $listOrder); ?>
|
|
||||||
</th>
|
|
||||||
<th class="nowrap">
|
|
||||||
<?php echo \JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_BRANCH'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_READY_TO_COMMIT'); ?>
|
|
||||||
</th>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
|
|
||||||
</th>
|
|
||||||
<?php if ($this->trackerAlias !== false) : ?>
|
|
||||||
<th width="8%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
|
||||||
</th>
|
|
||||||
<?php endif; ?>
|
|
||||||
<th width="10%" class="nowrap center">
|
|
||||||
<?php echo \JHtml::_('grid.sort', 'JSTATUS', 'applied', $listDirn, $listOrder); ?>
|
|
||||||
</th>
|
|
||||||
<th width="15%" class="nowrap center">
|
|
||||||
<?php echo \JText::_('COM_PATCHTESTER_TEST_THIS_PATCH'); ?>
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tfoot>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="<?php echo $colSpan; ?>">
|
<th width="5%" class="nowrap center">
|
||||||
</td>
|
<?php echo \JHtml::_('grid.sort', 'COM_PATCHTESTER_PULL_ID', 'a.pull_id', $listDirn, $listOrder); ?>
|
||||||
|
</th>
|
||||||
|
<th class="nowrap">
|
||||||
|
<?php echo \JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_BRANCH'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_READY_TO_COMMIT'); ?>
|
||||||
|
</th>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_GITHUB'); ?>
|
||||||
|
</th>
|
||||||
|
<?php if ($this->trackerAlias !== false) : ?>
|
||||||
|
<th width="8%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_JISSUES'); ?>
|
||||||
|
</th>
|
||||||
|
<?php endif; ?>
|
||||||
|
<th width="10%" class="nowrap center">
|
||||||
|
<?php echo \JHtml::_('grid.sort', 'JSTATUS', 'applied', $listDirn, $listOrder); ?>
|
||||||
|
</th>
|
||||||
|
<th width="15%" class="nowrap center">
|
||||||
|
<?php echo \JText::_('COM_PATCHTESTER_TEST_THIS_PATCH'); ?>
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php echo $this->loadTemplate('items'); ?>
|
<?php echo $this->loadTemplate('items'); ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php echo $this->pagination->getListFooter(); ?>
|
<?php echo $this->pagination->getListFooter(); ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user