from scaffold.web import www class control(www.default.html_ui): def create(self, title="Join our mailing list", name=''): self.title = title self.name = name return self def render(self): htm = '

Signup %s

' % (self.node_id, self.title) htm += '
' % self.name htm += '' htm += '' htm += '' htm += 'Browse Archives' % self.name htm += '
' return htm #embed in site # #