[Notice] Announcing the End of Demo Server [Read me]

initial commit
@df5c18424ae7242d1d050b96762abfe46b5e55a4
--- app/controllers/HelpApp.java
+++ app/controllers/HelpApp.java
... | ... | @@ -2,9 +2,10 @@ |
2 | 2 |
|
3 | 3 |
import play.mvc.Controller; |
4 | 4 |
import play.mvc.Result; |
5 |
+import views.html.help.*; |
|
5 | 6 |
|
6 | 7 |
public class HelpApp extends Controller { |
7 | 8 |
public static Result help() { |
8 |
- return ok(views.html.underconstruction.render("help")); |
|
9 |
+ return ok(toc.render("help")); |
|
9 | 10 |
} |
10 | 11 |
} |
+++ app/views/help/toc.scala.html
... | ... | @@ -0,0 +1,6 @@ |
1 | +@(message: String) | |
2 | + | |
3 | +@home(message) { | |
4 | + <h1>Help</h1> | |
5 | +} | |
6 | + |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?