I've got a template that takes one param that is an Option:
@(overlappingDates: Option[List[Date]])
How do I render this template from a Java Controller?
I've tried:
return ok(template.render(scala.None$.MODULE$));
But this gives the following compile error:
[error] required: Option<List<Date>>
[error] found: None$