我正在使用securesocial插件并将其用作模块。
所以我的结构是这样的:
project
|
|--app
|---|
|---|--views/main.scala.html
|--conf
|--logs
|--module
|---|--securesocial
|---|------|
|---|------|--app
|---|------|---|
|---|------|---|--views/main.scala.html
|---|------|---|--views/login.scala.html
我的简单问题是,如何用我的“app/views”文件夹中的“main.scala.html”视图覆盖我的模块/securesocial/app/views 中的main.scala.html?!
我的意思是“覆盖”,我可以将登录视图包含到我的 main.scala.html 的“@content”变量中,通常会像这样工作:
@main("My title test"){
<p class="note">
Try <em>guillaume@@sample.com</em> with <em>test123</em> as password.
</p>
}
但是使用“@main”我无法从模块文件夹中访问(并因此覆盖)我的“app/views/main.scala.html”。