2
0
mirror of https://github.com/esiur/iui.git synced 2025-05-06 06:42:58 +00:00
iui/test/rooms.html
2021-02-22 11:39:50 +03:00

19 lines
593 B
HTML

<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>