Amiro.CMS API Reference
Amiro.Ru / Manual
Loading search...

Models usage example template

  • <!--#set var="body" value="
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  • <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  • <head>
  • <title>ModuleComponent - Model - Example - Amiro.CMS API Reference [beta]</title>
  • </head>
  • <body>##body##</body>
  • </html>
  • "-->
  •  
  • <!--#set var="model_table" value="
  • <h1>##mod_id##</h1>
  • <table cellpadding="2" cellspacing="2" border="1">
  • <thead>##thead##</thead>
  • <tbody>##tbody##</tbody>
  • </table>
  • "-->
  •  
  • <!--#set var="thead_empty" value="
  • <th>No records</th>
  • "-->
  •  
  • <!--#set var="thead_th" value="
  • <th>##col_name##</th>
  • "-->
  •  
  • <!--#set var="tbody_tr" value="
  • <tr>##row##</tr>
  • "-->
  •  
  • <!--#set var="tbody_td" value="
  • <td>##col_value##</td>
  • "-->