Subversion Repositories wpShopGermany4

Rev

Rev 2426 | Rev 2662 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<table style="width:auto !important;" class="widefat fixed tags" border="0" cellspacing="0" cellpadding="0">
        <thead>
                <tr>
                        <th id="name" class="manage-column sortable">
                                <a href="/">
                                        <span><?php echo __('Zahlungsart', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="th-right" id="total" class="manage-column sortable">
                                <a href="/">
                                        <span><?php echo __('Umsatz in', 'wpsg').' '.$this->get_option('wpsg_currency'); ?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                        <th class="th-right" id="percent" class="manage-column sortable">
                                <a href="/">
                                        <span><?php echo __('Prozent', 'wpsg')?></span>
                                        <span class="sorting-indicator"></span>
                                </a>
                        </th>
                </tr>
        </thead>
        <tbody class="the-list">
                <?php foreach ($this->view['chart']['data']['records'] as $data) { ?>
                <tr class="alternate">
                        <td><strong><?php echo wpsg_hspc($data['name']); ?></strong></td>
                        <td class="td-right"><?php echo wpsg_ff($data['total']); ?></td>
                        <td class="td-right"><?php echo wpsg_ff($data['percent']); ?></td>
                </tr>
                <?php } ?>
        </tbody>
</table>

<script type="text/javascript">
jQuery('.sortable a').bind('click', function(){ 

        return false;
});

</script>