Compiled Template string.adp

set __adp_output {}; set __ad_conn_locale [ad_conn locale]
append __adp_output "<html>
<head>
<title>Demo: Templates</title>
</head>
  <body>
    <h1>Food</h1>
    <table>
      "

set {body:rowcount} [llength ${body}]



  for { set __ats_body_i 0 } { $__ats_body_i < ${body:rowcount} } { incr __ats_body_i } {
    set body:item [lindex ${body} $__ats_body_i]
    set body:rownum [expr {$__ats_body_i + 1}]
  
append __adp_output "
        <tr>
          <td>([ns_quotehtml [lang::util::localize ${body:rownum}]])</td>
          <td bgcolor=\"#cc99ff\">[ns_quotehtml [lang::util::localize ${body:item}]]</td>
        </tr>
      "
}
append __adp_output "
    </table>
  </body>
</html>
"
set __adp_output