11 lines
202 B
Smalltalk
11 lines
202 B
Smalltalk
rendering
|
|
renderContentOn: html
|
|
html tbsContainer: [
|
|
html heading
|
|
level: 1;
|
|
with: 'My Contact Book'.
|
|
html tbsForm: [
|
|
self renderContactsOn: html.
|
|
self renderGlobalButtonsOn: html
|
|
]
|
|
] |