12 lines
382 B
Python
12 lines
382 B
Python
from scaffold.core.widget import base_widget
|
|
|
|
class control(base_widget):
|
|
|
|
def create(self, channel):
|
|
self.channel = channel
|
|
return self
|
|
|
|
def render(self):
|
|
self.count += 1
|
|
return """<div class="social-chat"><div class="contain"><iframe src="https://webchat.freenode.net?channels=%%23%s&uio=MTE9MjU207"></iframe></div></div>""" % self.channel
|