I am trying reference things of type option in my Scala Play template. I've been trying to use this resource: http://www.playframework.com/modules/scala-0.9/templates
This is how I am trying to reference a field in the case class:
@{optionalobject ?. field}
and it is not working, this is the error I am getting:
';' expected but '.' found.
I am unsure why I am getting this error.
Option
is a collection type, allowing you to do stuff like this. – Dispersoid