33
0
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:
Michael Babker 2018-07-29 09:08:23 -05:00
parent fe8cd75b0f
commit 17b2521ef1
3 changed files with 59 additions and 73 deletions

View File

@ -112,12 +112,6 @@ $colSpan = $this->trackerAlias !== false ? 8 : 7;
</th> </th>
</tr> </tr>
</thead> </thead>
<tfoot>
<tr>
<td colspan="<?php echo $colSpan; ?>">
</td>
</tr>
</tfoot>
<tbody> <tbody>
<?php echo $this->loadTemplate('items'); ?> <?php echo $this->loadTemplate('items'); ?>
</tbody> </tbody>

View File

@ -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="" />

View File

@ -103,12 +103,6 @@ echo \JHtml::_(
</th> </th>
</tr> </tr>
</thead> </thead>
<tfoot>
<tr>
<td colspan="<?php echo $colSpan; ?>">
</td>
</tr>
</tfoot>
<tbody> <tbody>
<?php echo $this->loadTemplate('items'); ?> <?php echo $this->loadTemplate('items'); ?>
</tbody> </tbody>