Guest User

Untitled

a guest
Oct 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. 32 class IMyFields(interface.Interface):
  2. 33
  3. 34 name = schema.TextLine(
  4. 35 title=u"Name",
  5. 36 description=u'Beschreibung',
  6. 37 required=True,
  7. 38 constraint = validation.validation.validateZahl
  8. 39 )
  9. 40
  10. 41 ngwzs = schema.List(
  11. 42 title = u"Neue Gewerbszweige",
  12. 43 description = u"Bitte klicken Sie auf Hinzufügen falls neue Gewerbszweige hinzugekommen sind.",
  13. 44 required = False,
  14. 45 value_type = schema.Object(
  15. 46 title=u"Gewerbszweige",
  16. 47 schema=IGewerbszweig),
  17. 48 )
  18. 49
Add Comment
Please, Sign In to add comment