ultimatepp/examples/AddressBookWeb/Persons.witz
cxl d4818f900f examples: AddressBookWeb
git-svn-id: svn://ultimatepp.org/upp/trunk@5147 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-07-08 09:56:09 +00:00

18 lines
374 B
Text

<table border="1" id="persons">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
$for(i in PERSON)
<tr>
<td>$i.FIRSTNAME</td>
<td>$i.LASTNAME</td>
<td>$i.EMAIL</td>
<td>
<a href=$Edit(i.ID)><img src=$Iml("AdrBookImg:Edit")/>Edit</a>
<a href=$Delete(i.ID)><img src=$Iml("AdrBookImg:Delete")/>Delete</a>
</td>
</tr>
$/
</table>