play コントローラーから scala テンプレートに arraylist を渡そうとしています。
私のコントローラーで
List<Profile> profiles = Profile.findAll();
return ok(contacts.render(profiles));
テンプレートcontacts.scala.htmlで
@import models.com.contactmanager.Profile
@(profiles: List[Profile])
エラーが発生しています:
not found: value profiles [error]
ライン用
@(profiles: List[Profile])