Skip to content

Instantly share code, notes, and snippets.

@Timshel
Forked from mandubian/solution.scala
Last active December 14, 2015 09:18
Show Gist options
  • Save Timshel/5063608 to your computer and use it in GitHub Desktop.
Save Timshel/5063608 to your computer and use it in GitHub Desktop.
How to create a form #scala #form #modified
Form(
tuple(
"numero" -> optional(nonEmptyText(6,6)),
"nom" -> cleanText(1,64),
"prenom" -> cleanText(1,64),
"coefficient" -> number
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment