View file veppa_wallpaper/sys/app/views/admin/bulkPending.php

File size: 1.19Kb
<?php echo $this->validation()->messages() ?>
<h1><?php echo  __('Bulk insert') ?></h1>
<p><?php echo __('There are {num} wallpapers not finished processing (some rows displayed in table below).', array('{num}' => $bulk_pending_total)) ?></p>
<ul>
    <li><a href="<?php echo  get_url('admin/bulkPendingDownload/') ?>"><?php echo __('Download not finished process records') ?></a></li>
    <li><a href="<?php echo  get_url('admin/bulkPendingDelete/') ?>"><?php echo __('Delete not finished process records') ?></a></li>
    <li><a href="<?php echo  get_url('admin/bulkProcess/') ?>"><?php echo __('Continue processing these records') ?></a></li>
</ul>
<table class="grid" width="100%">
    <tr>
        <th><?php echo __('Name') ?></th>
        <th><?php echo __('Image') ?></th>
        <th><?php echo __('Description') ?></th>
    </tr>
    <?php
    foreach ($bulk_pending as $w)
    {
        ?>
        <tr class="r<?php echo  ($tr_count++ % 2) ?>">
            <td><?php echo  View::escape($w->name) ?></td>
            <td><?php echo  View::escape($w->image) ?></td>
            <td><?php echo  View::escape($w->description) ?></td>
        </tr>
        <?php
    }
    ?>
</table>