delphimvcframework/samples/eluaserversideviews/www/list.elua
2014-04-01 17:07:43 +00:00

12 lines
284 B
Plaintext

<?lua require 'Lua.html.form'?>
<html>
<body>
<h2>Customer List</h2>
<ul>
<?lua for i = 1,#customers do ?>
<li><?lua=customers[i].firstName .. " " .. customers[i].lastName ?></li>
<?lua end ?>
</ul>
<a href="/newcustomer.elua">Add New Customer</a>
</body>
</html>