在我的meteor应用程序中,我有以下模板:
<template name="users">
<div class="container-fluid">
<div class="row-fluid">
<div class="page-header">
<h1><small>Users List</small></h1>
</div>
<table class="table table-bordered table-striped table-hover" id='userTable'>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
{{#each userList}}
{{>userRow}}
{{/each}}
</tbody>
</table>
</div>
</div>
</template>
<template name="userRow">
<tr class="userRow">
<td>{{name}}</td>
</tr>
</template>
如何在此表中添加分页(任何类型)?