Compiled Template skin-fancy.adp

set __adp_output {}; set __ad_conn_locale [ad_conn locale]
append __adp_output "<html>
<head>
<title>Demo: Skin</title>
  <style>
    h1 \{ font-family: Arial, Helvetica \}
    th \{ font-family: Arial, Helvetica \}
    td \{ font-family: Arial, Helvetica \}
  </style>
</head>
<body bgcolor=\"#FFFFCC\">
<h1>Sample Users</h1>
  <table cellpadding=\"4\" cellspacing=\"0\" border=\"1\" bgcolor=\"#CCFFCC\">
  <tr bgcolor=\"#eeeeee\"><th>First Name</th><th>Last Name</th></tr>
  "


  if {[info exists users]} {
      upvar 0 users __d3_swap
  }

  for { set __d3_i 1 } { $__d3_i <= ${users:rowcount}  } { incr __d3_i } {
    upvar 0 users:$__d3_i users
  
append __adp_output "
  <tr>
    <td>[ns_quotehtml [lang::util::localize $users(first_name)]]</td><td>[ns_quotehtml [lang::util::localize $users(last_name)]]</td>
  </tr>
  "
}

  if {[info exists __d3_swap]} {
      upvar 0 __d3_swap users
  }
append __adp_output "
  </table>
  </body>
</html>

"
set __adp_output