Skip to content

Instantly share code, notes, and snippets.

@alvesjnr
Created September 26, 2011 18:22
Show Gist options
  • Save alvesjnr/1242942 to your computer and use it in GitHub Desktop.
Save alvesjnr/1242942 to your computer and use it in GitHub Desktop.
class Schema(colander.Schema):
title = colander.SchemaNode(
colander.String(),
title='Book Title',
description='Book title without abbreviations',
)
schema = Schema()
form = deform.Form(schema)
form.render({'title':None}) # It is rendering a text field with the string None as content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment