| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * The browse review mobile view file of attend module of ZDOO.
- *
- * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
- * @license ZPL (http://zpl.pub/page/zplv12.html)
- * @author Tingting Dai <daitingting@xirangit.com>
- * @package attend
- * @version $Id
- * @link http://www.zdoo.com
- */
- if($extView = $this->getExtViewFile(__FILE__)){include $extView; return helper::cd();}
- include "../../common/view/m.header.html.php";?>
- <style>.align-middle td{vertical-align: middle;}</style>
- <section id='page' class='section list-with-pager'>
- <?php $refreshUrl = $this->createLink('attend', 'browsereview');?>
- <div class='box' data-refresh-url='<?php echo $refreshUrl;?>'>
- <table class='table bordered'>
- <thead>
- <tr>
- <th class='w-70px text-center'><?php echo $lang->attend->account;?></th>
- <th class='text-center'><?php echo $lang->attend->manualIn;?></th>
- <th class='text-center'><?php echo $lang->attend->status;?></th>
- <th class='w-120px text-center'><?php echo $lang->actions;?></th>
- </tr>
- </thead>
- <?php foreach($attends as $attend):?>
- <?php if(!isset($users[$attend->account])) continue;?>
- <?php $user = $users[$attend->account];?>
- <tr class='text-center align-middle' data-id='<?php echo $attend->id;?>'>
- <td><?php echo $user->realname;?></td>
- <td><?php echo substr($attend->manualIn, 0, 5);?></td>
- <td><?php echo zget($lang->attend->statusList, $attend->status);?></td>
- <td>
- <?php
- $canReview = $this->attend->isClickable($attend, 'review');
- if($canReview)
- {
- echo "<a class='btn btn-xs success' data-remote='" . inlink('review', "id={$attend->id}&status=pass") . "' data-display='ajaxAction' data-confirm='{$lang->attend->confirmReview['pass']}' data-locate='self'>{$lang->attend->reviewStatusList['pass']}</a>";
- echo "<a class='btn btn-xs warning' data-remote='" . inlink('review', "id={$attend->id}&status=reject") . "' data-display='modal' data-placement='bottom'>{$lang->attend->reviewStatusList['reject']}</a>";
- }
- ?>
- </td>
- </tr>
- <?php endforeach;?>
- </table>
- </div>
- </section>
- <?php include "../../common/view/m.footer.html.php";?>
|