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

12 lines
293 B
Plaintext

<?lua require 'Lua.html.form'?>
<html>
<body>
<h2>Customer List</h2>
<ul>
<?lua for _, customer in ipairs(customers) do ?>
<li><?lua=customer.firstName .. " " .. customer.lastName ?></li>
<?lua end ?>
</ul>
<a href="/newcustomer.elua">Add New Customer</a>
</body>
</html>