mirror of
https://github.com/esiur/iui.git
synced 2025-06-27 09:23:12 +00:00
initial commit
This commit is contained in:
18
test/rooms.html
Normal file
18
test/rooms.html
Normal file
@ -0,0 +1,18 @@
|
||||
<i-repeat id="rooms" :start=" this.start != undefined ? this.start : 0"
|
||||
:data=" home.GetRooms(this.start, 10)"
|
||||
:total=" home.RoomsCount">
|
||||
<table>
|
||||
<tr>
|
||||
<td>${this.start + parseInt(index)}</td>
|
||||
<td>${v.Username}</td>
|
||||
<td>${v.Tel}</td>
|
||||
<td>${v.Email}</td>
|
||||
<td>${v.Online}</td>
|
||||
<td>${v.Permissions}</td>
|
||||
<td>${v.Picture}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</i-repeat>
|
||||
|
||||
<button onclick="iui('rooms').start -= 10; iui('rooms').update()">Back</button>
|
||||
<button onclick="iui('rooms').start += 10; iui('rooms').update()">Next</button>
|
Reference in New Issue
Block a user