parte del codigo:
Código PHP:
Ver original[QUOTE]if($this->pagination->total > 0) : ?>
<table class="list stripe">
<thead>
<tr>
<th class="checkbox">
<input type="checkbox" class="check-all" />
</th>
<th class="type">
<?php echo $this->app->html->_('grid.sort', 'Type', 'a.type', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="type">
<?php echo $this->app->html->_('grid.sort', 'Ref', 'a.ref', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="name" colspan="2">
<?php echo $this->app->html->_('grid.sort', 'Name', 'a.name', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="published">
<?php echo $this->app->html->_('grid.sort', 'Published', 'a.state', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="frontpage">
<?php echo JText::_('Frontpage'); ?>
</th>
<th class="searchable">
<?php echo JText::_('Searchable'); ?>
</th>
<th class="comments">
<?php echo JText::_('Comments'); ?>
</th>
<th class="priority">
<?php echo $this->app->html->_('grid.sort', 'Order Priority', 'a.priority', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="access">
<?php echo $this->app->html->_('grid.sort', 'Access', 'a.access', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="author">
<?php echo $this->app->html->_('grid.sort', 'Author', 'a.created_by', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="date">
<?php echo $this->app->html->_('grid.sort', 'Date', 'a.created', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
<th class="hits">
<?php echo $this->app->html->_('grid.sort', 'Hits', 'a.hits', @$this->lists['order_Dir'], @$this->lists['order']); ?>
</th>
</tr>[/QUOTE]