mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-07-03 03:36:22 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
from tornado.web import UIModule
|
|
|
|
|
|
class WebIDE(UIModule):
|
|
def render(self, anchor_id, *args, **kwargs):
|
|
return self.render_string('module-webide.html', anchor_id=anchor_id, **kwargs)
|
|
|
|
def css_files(self):
|
|
return ['module-webide.css']
|