#!/usr/bin/env python # coding: utf8 from gluon.html import * class CHECKBOX(INPUT): tag = 'input' def __init__(self, text, **attributes): INPUT.__init__( self, **attributes) self.attributes['_type'] = 'checkbox' self.append( text ) class RADIOBUTTON(CHECKBOX): def __init__(self, text, **attributes): INPUT.__init__( self, **attributes) self.attributes['_type'] = 'radio'