42 lines
1.3 KiB
PHTML
42 lines
1.3 KiB
PHTML
<?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>
|
|
|
|
<div id="rightPanel">
|
|
<?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; ?>
|
|
|
|
<div class="right_title">评审专家</div>
|
|
|
|
<form>
|
|
<input type="hidden" name="submit" value="1" />
|
|
<input type="hidden" name="edit" value="<?php echo $this->id;?>" />
|
|
<table>
|
|
<tr>
|
|
<td width="100">姓名</td><td width="300"><?php echo $this->infos['realname']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>特长</td><td><textarea name="speciality" style="width:300px;height:100px;"><?php echo $this->infos['speciality'];?></textarea></td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" value="提交" />
|
|
</form>
|
|
|
|
</div>
|