nti.schema.vocabulary¶
Vocabularies and factories for use in schema fields.
When this package is configured (via configure.zcml) there will be a schema
vocabulary named Countries available:
>>> from nti.schema.field import Choice
>>> from zope import interface
>>> class IA(interface.Interface):
... choice = Choice(title=u"Choice",
... vocabulary="Countries")