mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
12 lines
293 B
Plaintext
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> |