mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-07-01 23:16:24 +00:00
7 lines
186 B
Python
7 lines
186 B
Python
from tornado.web import UIModule
|
|
|
|
|
|
class Logger(UIModule):
|
|
def render(self, anchor_id, *args, **kwargs):
|
|
return self.render_string('module-logger.html', anchor_id=anchor_id)
|