Employees

{% for row in data %} {% end %}
  FirstName LastName TitleOfCourtesy Title ReportsTo Extension HomePhone Address City Country PhotoPath PostalCode Region BirthDate HireDate
    {{ row.FirstName if row.FirstName != None else '' }} {{ row.LastName }} {{ row.TitleOfCourtesy }} {{ row.Title }} {{ row.ReportsTo }} {{ row.Extension }} {{ row.HomePhone }} {{ row.Address }} {{ row.City }} {{ row.Country }} {{ row.PhotoPath }} {{ row.PostalCode }} {{ row.Region }} {{ row.BirthDate.strftime('%m/%d/%Y') if row.BirthDate != None else '' }} {{ row.HireDate.strftime('%m/%d/%Y') if row.HireDate != None else '' }}
{% module Pager('/db/employees', pager) %}