infobless.html
2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{template 'common/header'}
<div class="main">
<ul class="nav nav-tabs">
<li{if $_GPC['do'] == 'manager'} class="active"{/if}><a href="{php echo $this->createWebUrl('manager');}">喜帖管理</a>
<li{if $_GPC['do'] == 'infolist'} class="active"{/if}><a href="{php echo $this->createWebUrl('infolist', array('sid'=>$sid));}">赴宴名单</a>
<li{if $_GPC['do'] == 'infobless'} class="active"{/if}><a href="{php echo $this->createWebUrl('infobless', array('sid'=>$sid));}">收到祝福</a></li>
</ul>
<div class="panel panel-info">
<div class="panel-heading">筛选</div>
<div class="panel-body">
<form action="./index.php" method="get" class="form-horizontal" role="form">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="lxy_marry" />
<input type="hidden" name="do" value="infobless" />
<input type="hidden" name="sid" value="{$sid}" />
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">姓名</label>
<div class="col-sm-8 col-lg-9">
<input class="form-control" name="keyword" id="" type="text" value="{$_GPC['keyword']}">
</div>
<div class=" col-xs-12 col-sm-2 col-lg-2">
<button class="btn btn-default"><i class="fa fa-search"></i> 搜索</button>
</div>
</div>
</form>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body table-responsive">
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="width:100px;">姓名</th>
<th style="width:100px;">电话</th>
<th style="width:300px;">祝福留言</th>
</tr>
</thead>
<tbody>
{loop $list $item}
<tr>
<td>{$item['name']}</td>
<td>{php echo $item['tel']}</td>
<td>{$item['zhufu']}</td>
</tr>
{/loop}
</tbody>
<tr>
<td colspan="3">
<input name="token" type="hidden" value="{$_W['token']}" />
</td>
</tr>
</table>
</div>
</div>
{$pager}
</div>