2013-12-14 01:43:03 +07:00
|
|
|
!!!
|
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%title Customers List
|
|
|
|
%body
|
|
|
|
- customers.each do |customer|
|
|
|
|
%dl
|
|
|
|
%dt Name:
|
2013-12-14 02:40:54 +07:00
|
|
|
%dd= customer['name']
|
2013-12-14 01:43:03 +07:00
|
|
|
%dt Age:
|
2013-12-14 02:40:54 +07:00
|
|
|
%dd= customer['age']
|
2013-12-14 01:43:03 +07:00
|
|
|
%dt Address:
|
|
|
|
%dd
|
2013-12-14 02:40:54 +07:00
|
|
|
= customer['zip']
|
|
|
|
= customer['country']
|
|
|
|
= customer['city']
|
|
|
|
= customer['address']
|
2013-12-14 01:43:03 +07:00
|
|
|
%dt Employer:
|
2013-12-14 02:40:54 +07:00
|
|
|
%dd= customer['employer']
|