I created a new project using the game console
now, by default, I got two files in my view directory:
main.scala.html index.scala.html
I want to add a new view file. I call it "forums.scala.html"
Now, I know that in order to make a presentation, you need to do this:
views.html.forums.render("Forums");
the problem is that intellisense does not recognize "forums"
but the index and most importantly, what it recognizes.
I noticed these files:
class_managed / views.html / index.class
class_managed / views.html / main.class
but there is no forum forum, so I suspect this is a problem.
I tried to build a project, but that did not help.
so what is the solution?
thanks
source share