Files
contact-book/ContactBook.package/WAContactBook.class/instance/renderContact.on..st
2018-05-12 15:25:36 +02:00

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 ]
]