(self, view, path, **kwargs)
| 356 | """Footer is only supposed to show in interactive web-context.""" |
| 357 | |
| 358 | def build_html(self, view, path, **kwargs): |
| 359 | cssId = self.getCssId() |
| 360 | b = self.context.b |
| 361 | b.comment('Start %s' % cssId) |
| 362 | b.footer() |
| 363 | b.div(cssId=cssId, cssClass='wrapper clearfix') |
| 364 | for e in self.elements: |
| 365 | e.build_html(view, path, **kwargs) |
| 366 | b._div() |
| 367 | b._footer() |
| 368 | b.comment('End %s' % cssId) |
| 369 | |
| 370 | if __name__ == '__main__': |
| 371 | import doctest |