9 lines
256 B
Smalltalk
9 lines
256 B
Smalltalk
rendering
|
|
renderContact: aContact on: html
|
|
html tableRow: [
|
|
html
|
|
tableData: [ self renderPhotoOf: aContact on: html ];
|
|
tableData: aContact fullname;
|
|
tableData: aContact email;
|
|
tableData: [ self renderButtonsForContact: aContact on: html ]
|
|
] |