| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | <{include file="./admin/header.html"}> <{includefile="./admin/left.html"}> <{include file="./admin/nav.html"}> <{includefile="get_kindeditor.html"}><style>.set-nav {	margin: 0 auto;}.set-nav-hr {	background-color: #ddd;	height: 1px;	position: relative;}.form-group label {	font-weight: 600;}.checkbox-inline, .radio-inline {	font-weight: 400 !important;}.rowlabel {	font-weight: 300 !important;}.music_play_hide {	display: none;}</style><div id="activity_container">	<div class="activity_center"  style="width: 100%">		<{include file="./admin/activity/common_nav.html"}> <input			name="events_id" type="hidden" value="<{$events_Data.events.id}>">		<div class="panel panel-default" >			<div class="panel-heading" >				<h3 class="panel-title" id="panel-title">用户列表</h3>			</div>			<div class="panel-body" >				<div class="form-group">					<div>						<table class="table table-hover">							<thead>								<tr>									<th>用户头像</th>									<th>用户名</th>									<th>Uid</th>									<th>创建时间</th>								</tr>							</thead>							<tbody>								<{foreach from=$thisPageUserData item=userData}>								<tr>									<td>									<{if $userData.headimgurl}>									<img class="img-rounded" width="48" height="48" src="<{$userData.headimgurl}>" />									<{else}>									<img class="img-rounded" width="48" height="48" src="http://news.mydrivers.com/Img/20110518/04481549.png" />									<{/if}>									</td>									<td><{if $userData.nickname}><{$userData.nickname}><{else}>游客<{$userData.id}><{/if}></td>									<td passport_uid="<{$userData.passport_uid}>"><{$userData.id}></td>									<td><{"Y-m-d H:i:s"|date:$userData.create_time}></td>								</tr>								<{/foreach}>							</tbody>						</table>						<div class="page">						<{$page_html}>						</div>					</div>				</div>			</div>		</div>	</div>	<div style="clear: both;"></div></div><script>	KISSY.use('node, io, event', function(S, Node, IO, Event) {		var $ = S.all;	});</script><{include file="./admin/bottom.html"}>
 |