Skip to content

Instantly share code, notes, and snippets.

@julienroubieu
Last active August 29, 2015 14:19
Show Gist options
  • Save julienroubieu/05fea50519c78f03f0bb to your computer and use it in GitHub Desktop.
Save julienroubieu/05fea50519c78f03f0bb to your computer and use it in GitHub Desktop.
Print an option value in a Play scala template
// Surrounding div is only printed when optional.isDefined()
@for(someValue <- optional) { <div class='value'>@someValue</div> }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment