westdc-zf1/application/admin/views/scripts/review/invite.phtml

69 lines
2.6 KiB
PHTML
Raw Normal View History

2011-10-08 08:40:07 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle('后台管理');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/admin.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/admin">后台首页</a>');
$this->breadcrumb('元数据评审');
$this->breadcrumb()->setSeparator(' > ');
?>
<div id="leftPanel">
<?= $this->partial('review/left.phtml'); ?>
</div>
2011-10-12 14:27:02 +00:00
<div id="rightPanel">
2011-10-08 08:40:07 +00:00
<?php if ($this->msg or $this->messages) :?>
<div id="message">
<?php if ($this->msg) : ?>
<p><?php echo $this->msg; ?></p>
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
<p><?php echo $msg; ?></p>
<?php endforeach;endif; ?>
</div>
<?php endif; ?>
2011-10-12 14:27:02 +00:00
2011-10-08 08:40:07 +00:00
<div class="search">
<form action="" method="get">
<input type="hidden" name="search" value='1' />
<input type="hidden" name="id" value='<?php echo $this->id;?>' />
<ul>
<li><label>搜索关键字</label><input type="text" name="keyword" value="<?php echo $this->keyword; ?>" /></li>
<li><input type="submit" class="searchbtn" value="搜索" /></li>
</ul>
</form>
</div><!-- search DIV -->
<form action="" method="get">
<input type="hidden" name="id" value='<?php echo $this->id;?>' />
<input type="hidden" name="submit" value="1" />
2011-10-12 14:27:02 +00:00
<table><thead>
<tr>
2011-10-10 09:26:05 +00:00
<td width="30">选择</td>
2011-10-08 08:40:07 +00:00
<td width='80'>用户ID</td>
<td width='100'>用户名</td>
<td width='100'>姓名</td>
<td width="250">单位</td>
<td width="100">联系电话</td>
<td width="100">电子邮箱</td>
2011-10-12 14:27:02 +00:00
</tr></thead>
2011-10-08 08:40:07 +00:00
<?php if (count($this->paginator)): ?>
<?php $autoindex=0;?>
<?php foreach ($this->paginator as $item): ?>
<?php $autoindex++;?>
2011-10-12 14:27:02 +00:00
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
2011-10-10 09:26:05 +00:00
<td style="text-align:center;"><input type="checkbox" name="exps[]" value="<?php echo $item['id']; ?>" /></td>
2011-10-08 08:40:07 +00:00
<td><?php echo $item['id']; ?></td>
<td><?php echo $item['username']; ?></td>
<td><?php echo $item['realname']; ?></td>
<td><?php echo $item['unit']; ?></td>
<td><?php echo $item['phone']; ?></td>
<td><?php echo $item['email']; ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</table>
2013-05-03 01:47:45 +00:00
<input class="btn btn-primary" type="submit" value="邀请选中的专家评审《<?php echo $this->md['title'];?>》" onclick="return confirm('是否确定邀请已选择的专家')" />
2011-10-08 08:40:07 +00:00
</form>
2011-10-12 14:27:02 +00:00
<div class="pagenavi"><?= $this->paginator; ?></div>
2011-10-08 08:40:07 +00:00
</div>
</div>