mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
21 lines
341 B
Text
21 lines
341 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<table border="1">
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
</tr>
|
|
$for(i in PERSON)
|
|
<tr>
|
|
<td>$(i._index + 1).</td>
|
|
<td>$i.NAME</td>
|
|
<td>$i.LASTNAME</td>
|
|
<td><a href=$Edit(i.ID)>Edit</a></td>
|
|
</tr>
|
|
$/
|
|
</table>
|
|
<a href=$New>Create new</a>
|
|
</body>
|
|
</html>
|