Work in progress ================ Resources: - http://bitbucket.org/bbangert/webhelpers FormGn - Gernerieren HTML-Forms =============================== Feldtypen ~~~~~~~~~ siehe: webhelpers.html.tags .. note:: Test with cut and paste sphinx source +-----------------+--------------------------------------------------------------------------+ | Feldtyp | Syntax | +=================+==========================================================================+ | Text | text(name, value=None, id=None, \*\*attrs) | +-----------------+--------------------------------------------------------------------------+ | Textarea | text(name, content='', id=None, \*\*attrs) | +-----------------+--------------------------------------------------------------------------+ | Hidden | hidden(name, value=None, id=None, \*\*attrs) | +-----------------+--------------------------------------------------------------------------+ | Password | password(name, value=None, id=None, \*\*attrs) | +-----------------+--------------------------------------------------------------------------+ | Checkbox | checkbox(name, value='1', checked=False, label=None, id=None, \*\*attrs) | +-----------------+--------------------------------------------------------------------------+ | Radio | | +-----------------+--------------------------------------------------------------------------+ | Select | | +-----------------+--------------------------------------------------------------------------+ | Submit | | +-----------------+--------------------------------------------------------------------------+