Play templates in 2.0 are just Scala functions, so you need to declare params at the beginning of the template (beginning from line #1):
@(one: String, two: String)
This is first param: @one <br/>
This is second param: @two
Check the templates docs for details
On the other way if you need to pass large quantity of variables of the same type then the Map can be good solution as well:
public static Result index() {
Map<String, String> labels = new HashMap<String, String>();
labels.put("first", "First label");
labels.put("second", "Second label");
// etc etc
labels.put("hundredth", "Label no. 100");
return ok(template.render(labels));
}
template.scala.html
@(labels: Map[String, String])
@labels.get("first") <br/>
@labels.get("second") <br/>
.....
@labels.get("hundredth")