Source for SMSqueakMapView>>accountsbyname

accountsbyname
	"List all accounts sorted by name."

	| b |
	b := self builder.
	b start; h1: 'All accounts sorted by name'.
	b ul: model accountsByName do:
		[:acc | b html: (self accountLink: acc) , ' - ', acc summary].
	b hr; linkDefault: 'Back'; end.
	^b