from owrx.form import Input class AvatarInput(Input): def __init__(self, id, label, infotext=None): super().__init__(id, label, infotext=infotext) def render_input(self, value): return """
Receiver avatar
""".format( id=self.id )