Subversion Repositories SmartDukaan

Rev

Rev 15751 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="userActivityStatuses index">
        <h2><?php echo __('User Activity Statuses'); ?></h2>
        <table cellpadding="0" cellspacing="0" class="display table table-striped">
        <tr>
                        <th><?php echo $this->Paginator->sort('user_id'); ?></th>
                        <th><?php echo h('Email'); ?></th>
                        <th><?php echo $this->Paginator->sort('comment'); ?></th>
                        <th><?php echo $this->Paginator->sort('last_active'); ?></th>
                        <th><?php echo $this->Paginator->sort('last_active_diff'); ?></th>
                        <th><?php echo $this->Paginator->sort('first_not_registered_time'); ?></th>
                        <th><?php echo $this->Paginator->sort('created'); ?></th>
                
        </tr>
        <?php foreach ($userActivityStatuses as $userActivityStatus): ?>
        <tr>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['user_id']); ?></td>
                <td>
                        <?php echo h($userActivityStatus['User']['username']); ?>
                </td>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['comment']); ?>&nbsp;</td>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['last_active']); ?>&nbsp;</td>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['last_active_diff']); ?>&nbsp;</td>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['first_not_registered_time']); ?>&nbsp;</td>
                <td><?php echo h($userActivityStatus['UserActivityStatus']['created']); ?>&nbsp;</td>
                
        </tr>
<?php endforeach; ?>
        </table>
        <p>
        <?php
        echo $this->Paginator->counter(array(
        'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
        ));
        ?>      </p>
        <div class="paging">
        <?php
                echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
                echo $this->Paginator->numbers(array('separator' => ' '));
                echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
        ?>
        </div>
</div>