Skip to content

Instantly share code, notes, and snippets.

@mariussoutier
Created August 7, 2012 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariussoutier/3285815 to your computer and use it in GitHub Desktop.
Save mariussoutier/3285815 to your computer and use it in GitHub Desktop.
Helper for using sequences in Play Scala templates
package views.html.helper
import play.api.templates.Html
object definingNonEmpty {
def apply[T <: Seq[_]](t: T)(block: (T) => Html) = {
if (t.nonEmpty) block(t) else Html("")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment