Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="notificationCampaigns view">
<h2><?php echo __('Notification Campaign'); ?></h2>
        <?php //debug($notificationCampaign); ?>
        <table cellpadding="0" cellspacing="10%" border="1" class="table table-striped">
        <tr>
        <th align="center"><?php echo h('Id'); ?></th>
        <th align="center"><?php echo h('Campaign Id'); ?></th>
        <th align="center"><?php echo h('Type'); ?></th>
        <th align="center"><?php echo h('Status'); ?></th>
        <th align="center"><?php echo h('Response Time'); ?></th>
        <th align="center"><?php echo h('Created'); ?></th>
        </tr>
        
        <?php foreach ($userdata as $key => $temp): ?>
<!--            <?php debug($temp);?> -->
                <tr align="center">
                <td width="15%">
                <?php echo h($temp['pushnotifications']['id'])?>
                </td>
                <td>
                <?php echo h($temp['pushnotifications']['notification_campaign_id'])?>
                </td>
                <td>
                <?php echo h($temp['pushnotifications']['type'])?>
                </td>
                <td>
                <?php echo h($temp['pushnotifications']['status'])?>
                </td>
                <td width="30%">
                <?php echo h($temp['pushnotifications']['response_time'])?>
                </td>
                <td width="30%">
                <?php echo h($temp['pushnotifications']['created'])?>
                </td>

                </tr>
        <?php endforeach; ?>
        </table>

</div>